X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestPath%2FController%2FThree.pm;fp=t%2Flib%2FTestPath%2FController%2FThree.pm;h=09f5a5d12ee7d83c5ff1cb113da4dfbf42b79919;hp=0000000000000000000000000000000000000000;hb=dd6a9f23fda9c6520be5021f7fb51f4fb345c8c4;hpb=d2995a765f120b78a134a6e8dfb14b0f7fde8644 diff --git a/t/lib/TestPath/Controller/Three.pm b/t/lib/TestPath/Controller/Three.pm new file mode 100644 index 0000000..09f5a5d --- /dev/null +++ b/t/lib/TestPath/Controller/Three.pm @@ -0,0 +1,12 @@ +package TestPath::Controller::Three; +use Moose; +use namespace::autoclean; + +BEGIN { extends 'Catalyst::Controller' } + +sub three :Path('') { + my ( $self, $c ) = @_; + $c->response->body( 'OK' ); +} + +__PACKAGE__->meta->make_immutable; \ No newline at end of file