X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F107_no_auto_help.t;h=c69e153389b47bbab5b8b66e98bd955863974c31;hb=6a378fbdc3c4c5ca5b9f4de5e2ad60da912e9f97;hp=287219a3030b4330926bfcc9a65c378a5ee5fe0a;hpb=a2dee8c244d9deead79fadb6471b11c92ad4c078;p=gitmo%2FMooseX-Getopt.git diff --git a/t/107_no_auto_help.t b/t/107_no_auto_help.t index 287219a..c69e153 100644 --- a/t/107_no_auto_help.t +++ b/t/107_no_auto_help.t @@ -12,8 +12,9 @@ use warnings; use Test::More; -plan skip_all => 'This test needs MooseX::SimpleConfig 0.07' - unless eval { require MooseX::SimpleConfig && MooseX::SimpleConfig->VERSION(0.07); }; +use Test::Requires { + 'MooseX::SimpleConfig' => 0.07, # skip all if not installed +}; my $fail_on_exit = 1; { @@ -58,7 +59,7 @@ END { warning_like { throws_ok { Class->new_with_options } #usage: 107_no_auto_help.t [-?] [long options...] - qr/^usage: [\d\w]+\Q.t [-?] [long options...]\E.\t--configfile\s*.\t\Q-? --usage --help Prints this usage information.\E/ms, + qr/^usage: [\d\w]+\Q.t [-?] [long options...]\E.\s+\Q-? --usage --help Prints this usage information.\E.\s+--configfile/ms, 'usage information looks good'; } qr/^Specified configfile \'this_value_unimportant\' does not exist, is empty, or is not readable$/,