fix root default thingie jayk gave me, sanitize Paths at registration time better
[catagits/Catalyst-Runtime.git] / t / aggregate / live_component_controller_action_index_or_default.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use FindBin;
7 use lib "$FindBin::Bin/../lib";
8
9 our $iters;
10
11 BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; }
12
13 use Test::More tests => 6*$iters;
14
15 use Catalyst::Test 'TestAppIndexDefault';
16
17 if ( $ENV{CAT_BENCHMARK} ) {
18     require Benchmark;
19     Benchmark::timethis( $iters, \&run_tests );
20 }
21 else {
22     for ( 1 .. $iters ) {
23         run_tests();
24     }
25 }
26
27 sub run_tests {
28     is(get('/indexchained'), 'index_chained', ':Chained overrides index');
29     is(get('/indexprivate'), 'index_private', 'index : Private still works');
30
31 # test :Path overriding default
32     is(get('/one_arg'), 'path_one_arg', ':Path overrides default');
33     is(get('/one_arg/foo/bar'), 'default', 'default still works');
34
35 # now the same thing with a namespace, and a trailing / on the :Path
36     is(get('/default/one_arg'), 'default_path_one_arg',
37         ':Path overrides default');
38     is(get('/default/one_arg/foo/bar'), 'default_default',
39         'default still works');
40 }