improved grammar in test notes; use fixed test count when not skipping tests
[gitmo/MooseX-Getopt.git] / t / 107_no_auto_help.t
index 5521bc2..c958257 100644 (file)
@@ -13,8 +13,11 @@ use warnings;
 use Test::More;
 
 BEGIN {
-plan skip_all => 'This test needs MooseX::SimpleConfig 0.07'
-    unless eval { require MooseX::SimpleConfig && MooseX::SimpleConfig->VERSION(0.07); };
+    if (eval { require MooseX::SimpleConfig and MooseX::SimpleConfig->VERSION(0.07) }) {
+        plan tests => 3;
+    } else {
+        plan skip_all => 'This test needs MooseX::SimpleConfig 0.07';
+    }
 }
 
 my $fail_on_exit = 1;
@@ -48,8 +51,6 @@ use Test::Exception;
 END {
     ok(!$fail_on_exit, 'getoptions() lives');
 
-    done_testing;
-
     # cancel the non-zero exit status from _getopt_full_usage()
     exit 0;
 }