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