stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Priorities / MultiMethod.pm
CommitLineData
ad1783ae 1package TestApp::Controller::Priorities::MultiMethod;
2
3use strict;
4use warnings;
5use base qw/Catalyst::Controller/;
6
7sub auto :Private {
8 my ($self, $c) = @_;
9 $c->res->body(join(' ', $c->action->name, @{$c->req->args}));
10 return 1;
11}
12
13sub zero :Path :Args(0) { }
14
15sub one :Path :Args(1) { }
16
17sub two :Path :Args(2) { }
18
335b10cc 19sub not_def : Path { }
20
ad1783ae 211;