X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FMyApp1%2FController%2FC1.pm;h=0646229d597899a1d442a0703fc2dc7b79d04ec5;hb=77d62699ced7fd0493e9932f30c9bac5d8e913c4;hp=d8cc7677643b5059ca85ab22663ac1ed86ecb8bf;hpb=69d9fc4e5373a24f09d58f289d7b773b186a8479;p=catagits%2FCatalystX-Routes.git diff --git a/t/lib/MyApp1/Controller/C1.pm b/t/lib/MyApp1/Controller/C1.pm index d8cc767..0646229 100644 --- a/t/lib/MyApp1/Controller/C1.pm +++ b/t/lib/MyApp1/Controller/C1.pm @@ -23,6 +23,16 @@ put '/foo' => \&_put; del '/foo' => \&_del; +get 'bar'=> \&_get; + +get_html 'bar'=> \&_get_html; + +post 'bar'=> \&_post; + +put 'bar'=> \&_put; + +del 'bar'=> \&_del; + sub normal : Chained('/') : Args(0) { $REQ{normal}++; }