X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FMyApp1%2FController%2FC1.pm;h=0dfc7987343f246b6dc7856a48ad203fef4f0e94;hb=92f898a19c5da68f02fc86a62bc714f0aa140ee4;hp=9b56297e1a08c93bf57da18ee0cb8f3df95401c9;hpb=d16275f4ef54fdc9ec25bc9050c7d0e1758fe3ea;p=catagits%2FCatalystX-Routes.git diff --git a/t/lib/MyApp1/Controller/C1.pm b/t/lib/MyApp1/Controller/C1.pm index 9b56297..0dfc798 100644 --- a/t/lib/MyApp1/Controller/C1.pm +++ b/t/lib/MyApp1/Controller/C1.pm @@ -56,7 +56,7 @@ chain_point '_set_user' => capture_args 1 => sub { $REQ{user} = $_[2] }; -get '' +get q{} => chained '_set_user' => args 0 => sub { $REQ{user_end} = $REQ{user} }; @@ -67,7 +67,7 @@ chain_point '_set_thing' => capture_args 1 => sub { $REQ{thing} = $_[2] }; -get '' +get q{} => chained '_set_thing' => args 0 => sub { $REQ{thing_end} = $REQ{thing} };