stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Moose / MethodModifiers.pm
CommitLineData
87e41a18 1package TestApp::Controller::Moose::MethodModifiers;
2use Moose;
3BEGIN { extends qw/TestApp::Controller::Moose/; }
4
5after get_attribute => sub {
6 my ($self, $c) = @_;
7 $c->response->header( 'X-Catalyst-Test-After' => 'after called' );
8};
9
101;