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