I need a 'you forgot to svk add, fule' commit hook
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Priorities / MultiMethod.pm
diff --git a/t/lib/TestApp/Controller/Priorities/MultiMethod.pm b/t/lib/TestApp/Controller/Priorities/MultiMethod.pm
new file mode 100644 (file)
index 0000000..2a26c5d
--- /dev/null
@@ -0,0 +1,19 @@
+package TestApp::Controller::Priorities::MultiMethod;
+
+use strict;
+use warnings;
+use base qw/Catalyst::Controller/;
+
+sub auto :Private {
+    my ($self, $c) = @_;
+    $c->res->body(join(' ', $c->action->name, @{$c->req->args}));
+    return 1;
+}
+
+sub zero :Path :Args(0) { }
+
+sub one :Path :Args(1) { }
+
+sub two :Path :Args(2) { }
+
+1;