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