stackoverflow path bug take two
[catagits/Catalyst-Runtime.git] / t / lib / TestAppMatchSingleArg / Controller / Root.pm
index ab24f12..d00b6ae 100644 (file)
@@ -16,4 +16,9 @@ sub match_other : Path {
     $c->res->body('Path');
 }
 
+sub match_two : Path Args(2) {
+    my ($self, $c) = @_;
+    $c->res->body('Path Args(2)');
+}
+
 1;