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