From: Karen Etheridge Date: Sun, 23 Dec 2012 19:57:49 +0000 (-0800) Subject: package name not needed here X-Git-Tag: v0.48~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=commitdiff_plain;h=66ee5b17ce7666667d3a4bd9d0a4026e57d4a4da package name not needed here --- diff --git a/t/011_process_argv.t b/t/011_process_argv.t index 2a7baf3..e104d3b 100644 --- a/t/011_process_argv.t +++ b/t/011_process_argv.t @@ -36,17 +36,17 @@ is( ); isa_ok($pa, 'MooseX::Getopt::ProcessedArgv'); -Test::Deep::cmp_deeply($pa->argv_copy, [ +cmp_deeply($pa->argv_copy, [ '--bar', '10', 'file.dat' ], 'argv_copy'); -Test::Deep::cmp_deeply($pa->cli_params, { +cmp_deeply($pa->cli_params, { 'bar' => 10 }, 'cli_params'); -Test::Deep::cmp_deeply($pa->constructor_params, { +cmp_deeply($pa->constructor_params, { 'baz' => 100 }, 'constructor_params'); -Test::Deep::cmp_deeply($pa->extra_argv, [ +cmp_deeply($pa->extra_argv, [ 'file.dat' ], 'extra_argv');