test cases for the args0 issue
[catagits/Catalyst-Runtime.git] / t / args0_bug.t
CommitLineData
6a02419e 1use warnings;
2use strict;
3use Test::More;
4
5{
6 package MyApp::Controller::Root;
7 $INC{'MyApp/Controller/Root.pm'} = __FILE__;
8
9 use Moose;
10 use MooseX::MethodAttributes;
11
12 extends 'Catalyst::Controller';
13
14 sub chain_base :Chained(/) CaptureArgs(1) { }
15
6a02419e 16 sub chained_one_args_0 : Chained(chain_base) PathPart('') Args(1) { $_[1]->res->body('chained_one_args_0') }
17 sub chained_one_args_1 : Chained(chain_base) PathPart('') Args(1) { $_[1]->res->body('chained_one_args_1') }
18
67b8d829 19 sub chained_zero_args_0 : Chained(chain_base) PathPart('') Args(0) { $_[1]->res->body('chained_zero_args_0') }
20 sub chained_zero_args_1 : Chained(chain_base) PathPart('') Args(0) { $_[1]->res->body('chained_zero_args_1') }
21
6a02419e 22 MyApp::Controller::Root->config(namespace=>'');
23
24 package MyApp;
25 use Catalyst;
26
27 MyApp->setup;
28}
29
30=over
31
32[debug] Loaded Chained actions:
33.-----------------------------------------+---------------------------------------------------.
34| Path Spec | Private |
35+-----------------------------------------+---------------------------------------------------+
36| /chain_base/*/* | /chain_base (1) |
37| | => /chained_one_args_0 (1) |
38| /chain_base/*/* | /chain_base (1) |
39| | => /chained_one_args_1 (1) |
40| /chain_base/* | /chain_base (1) |
41| | => /chained_zero_args_0 (0) |
42| /chain_base/* | /chain_base (1) |
43| | => /chained_zero_args_1 (0) |
44'-----------------------------------------+---------------------------------------------------'
45
46=cut
47
48use Catalyst::Test 'MyApp';
6a02419e 49{
67b8d829 50 my $res = request '/chain_base/capturearg/arg';
51 is $res->content, 'chained_one_args_1', "request '/chain_base/capturearg/arg'";
6a02419e 52}
53
54{
6a02419e 55 my $res = request '/chain_base/capturearg';
67b8d829 56 is $res->content, 'chained_zero_args_1', "request '/chain_base/capturearg'";
6a02419e 57}
58
59done_testing;
67b8d829 60
61__END__
62