Test::Requires must come before Test::NoWarnings
Karen Etheridge [Wed, 26 Dec 2012 18:07:49 +0000 (10:07 -0800)]
Changes
t/008_configfromfile.t
t/107_no_auto_help.t
t/112_configfile_constructor_arg.t

diff --git a/Changes b/Changes
index d3af2fe..29d6840 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,7 @@ Revision history for Perl extension MooseX-Getopt
 {{$NEXT}}
  - silence a warning in tests if the user does not have YAML::XS installed
    (thanks for the report, Getty!)
+ - fix off-by-one issues in test plans if optional requirements are not met
 
 0.48      2012-12-23 18:08:04 PST-0800
  - documentation and tests amended to prefer usage of 'trait' over 'metaclass'
index c40fcc6..9a490e5 100644 (file)
@@ -1,13 +1,12 @@
 use strict;
 use warnings;
 
+use Test::Requires 'MooseX::ConfigFromFile';    # skip all if not installed
 use Test::More tests => 38;
 use Test::Fatal;
 use File::Spec;
 use Test::NoWarnings 1.04 ':early';
 
-use Test::Requires 'MooseX::ConfigFromFile';
-
 {
     package App;
 
index e2064c7..638f1a5 100644 (file)
 use strict;
 use warnings;
 
+use Test::Requires { 'MooseX::SimpleConfig' => 0.07 };  # skip all if not installed
 use Test::More tests => 2;
+use Test::Warn 0.21;
+use Test::Fatal 0.003;
 
-use Test::Requires {
-    'MooseX::SimpleConfig' => 0.07, # skip all if not installed
-};
 use Test::NoWarnings 1.04 ':early';
 
 my $fail_on_exit = 1;
@@ -43,9 +43,6 @@ my $fail_on_exit = 1;
     1;
 }
 
-use Test::Warn 0.21;
-use Test::Fatal 0.003;
-
 END {
     ok(!$fail_on_exit, 'getoptions() lives');
 
index 8cb1381..68455b9 100644 (file)
@@ -1,11 +1,9 @@
 use strict;
 use warnings;
 
-use Test::Requires
-    'MooseX::SimpleConfig'; # skip all if not installed
-
 # respect the configfile value passed into the constructor.
 
+use Test::Requires 'MooseX::SimpleConfig';  # skip all if not installed
 use Test::More tests => 3;
 use Test::NoWarnings 1.04 ':early';
 use Path::Class;    # exports file, dir