X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F110_sort_usage_by_attr_order.t;h=c424add4842aad39dd575ebd14abfdf918b298d3;hb=e672789158a11f21f9e53b8d66dcfef5306f5973;hp=c12f4b6ce25627afac846ec86169feaca8542cc7;hpb=ce93a16f65575f0858473b5f0213cc04fa62eda9;p=gitmo%2FMooseX-Getopt.git diff --git a/t/110_sort_usage_by_attr_order.t b/t/110_sort_usage_by_attr_order.t index c12f4b6..c424add 100644 --- a/t/110_sort_usage_by_attr_order.t +++ b/t/110_sort_usage_by_attr_order.t @@ -9,8 +9,8 @@ # options added by this class. use strict; use warnings; -use Test::More tests => 1; -use Test::Exception; +use Test::More tests => 2; +use Test::NoWarnings 1.04 ':early'; { package MyClass; @@ -28,11 +28,11 @@ use Test::Exception; my $obj = MyClass->new_with_options(); my $expected = <<"USAGE"; -usage: 110_sort_usage_by_attr_order.t [-?] [long options...] -\t-? --usage --help Prints this usage information. -\t--foo Documentation for "foo" -\t--bar Documentation for "bar" -\t--baz Documentation for "baz" +usage: 110_sort_usage_by_attr_order.t [-?h] [long options...] +\t-h -? --usage --help Prints this usage information. +\t--foo Documentation for "foo" +\t--bar Documentation for "bar" +\t--baz Documentation for "baz" USAGE is($obj->usage->text, $expected, 'Usage text has nicely sorted options');