X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_cgi.t;h=697f2ad4147892bb9aeb91f782bd6dd62d8f3ded;hp=ffadb8af43b5510e8f5269be355b801322a3b3ec;hb=aee7cdcc0b2b3b7dc672b4b4a31b8c3b7ef3f1f7;hpb=942572d7cd0a89d54b12ddd89de16ddcd19ca077 diff --git a/t/aggregate/unit_core_script_cgi.t b/t/aggregate/unit_core_script_cgi.t index ffadb8a..697f2ad 100644 --- a/t/aggregate/unit_core_script_cgi.t +++ b/t/aggregate/unit_core_script_cgi.t @@ -17,6 +17,8 @@ lives_ok { shift @TestAppToTestScripts::RUN_ARGS; my $server = pop @TestAppToTestScripts::RUN_ARGS; like ref($server), qr/^Plack::Handler/, 'Is a Plack::Handler'; -is_deeply \@TestAppToTestScripts::RUN_ARGS, [], "no args"; +is ref(delete($TestAppToTestScripts::RUN_ARGS[0]->{argv})), 'ARRAY'; +is ref(delete($TestAppToTestScripts::RUN_ARGS[0]->{extra_argv})), 'ARRAY'; +is_deeply \@TestAppToTestScripts::RUN_ARGS, [{}], "no args"; done_testing;