X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Flive_component_controller_action_path_matchsingle.t;h=7957012d20eba4e56f92b3dc9de6c935d6cb6636;hb=5f1c280839c7864938a8ddcd4c268d0c2719652e;hp=6370e01c0d5949a61906c8e2392f607386822bf4;hpb=9dac01c784a1f27fe7bb110442d006f9919e9dc1;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/live_component_controller_action_path_matchsingle.t b/t/aggregate/live_component_controller_action_path_matchsingle.t index 6370e01..7957012 100644 --- a/t/aggregate/live_component_controller_action_path_matchsingle.t +++ b/t/aggregate/live_component_controller_action_path_matchsingle.t @@ -1,5 +1,3 @@ -#!perl - use strict; use warnings; @@ -10,9 +8,13 @@ our $iters; BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; } -use Test::More tests => 2*$iters; +use Test::More; use Catalyst::Test 'TestAppMatchSingleArg'; +plan 'skip_all' if ( $ENV{CATALYST_SERVER} ); + +plan tests => 3*$iters; + if ( $ENV{CAT_BENCHMARK} ) { require Benchmark; Benchmark::timethis( $iters, \&run_tests ); @@ -25,7 +27,8 @@ else { sub run_tests { { - is(get('/foo/bar'), 'Path', 'multiple args matched :Path'); + is(get('/foo/bar/baz'), 'Path', 'multiple args matched :Path'); is(get('/foo'), 'Path Args(1)', 'single arg matched :Path Args(1)'); + is(get('/foo/bar'), 'Path Args(2)', 'two args matched :Path Args(2)'); } }