From: Karen Etheridge Date: Wed, 26 Dec 2012 18:05:10 +0000 (-0800) Subject: remove Test::Deep usage that is not that necessary X-Git-Tag: v0.49~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3915c9fcd71bf4857baf6c214a42363969b37937;p=gitmo%2FMooseX-Getopt.git remove Test::Deep usage that is not that necessary --- diff --git a/dist.ini b/dist.ini index 6329918..52b736a 100644 --- a/dist.ini +++ b/dist.ini @@ -42,7 +42,6 @@ Test::Moose = 0 [Prereqs / TestRecommends] MooseX::ConfigFromFile = 0 MooseX::SimpleConfig = 0.07 -Test::Deep = 0 [InstallGuide] [MetaConfig] diff --git a/t/011_process_argv.t b/t/011_process_argv.t index aa1e7e1..4fb220f 100644 --- a/t/011_process_argv.t +++ b/t/011_process_argv.t @@ -3,7 +3,6 @@ use warnings; use Test::More tests => 7; use Test::Fatal 0.003; -use Test::Requires 'Test::Deep'; use Test::NoWarnings 1.04 ':early'; { @@ -37,17 +36,17 @@ is( ); isa_ok($pa, 'MooseX::Getopt::ProcessedArgv'); -cmp_deeply($pa->argv_copy, [ +is_deeply($pa->argv_copy, [ '--bar', '10', 'file.dat' ], 'argv_copy'); -cmp_deeply($pa->cli_params, { +is_deeply($pa->cli_params, { 'bar' => 10 }, 'cli_params'); -cmp_deeply($pa->constructor_params, { +is_deeply($pa->constructor_params, { 'baz' => 100 }, 'constructor_params'); -cmp_deeply($pa->extra_argv, [ +is_deeply($pa->extra_argv, [ 'file.dat' ], 'extra_argv');