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