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;
END {
ok(!$fail_on_exit, 'getoptions() lives');
- done_testing;
-
# cancel the non-zero exit status from _getopt_full_usage()
exit 0;
}
# usage information...
# This is not actually true (as of 0.29), as:
-# 1. the consuming class must set up a attributes named 'help', 'usage' and
+# 1. the consuming class must set up an attribute named 'help', 'usage' or
# '?' to contain these command line options, which is not clearly
# documented as a requirement
# 2. the code is checking whether an option was parsed into an attribute