b5373dfbe5f269b2c5e15f5e6f25253b631709f2
[catagits/Catalyst-Runtime.git] / t / lib / TestPath / Controller / Two.pm
1 package TestPath::Controller::Two;
2 use Moose;
3 use namespace::autoclean;
4
5 BEGIN { extends 'Catalyst::Controller' }
6
7 sub two :Path() {
8     my ( $self, $c ) = @_;
9     $c->response->body( 'OK' );
10 }
11
12 __PACKAGE__->meta->make_immutable;