- sub foo :Path { ... } now works!
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Path.pm
index 2c19f0e..fd82c0c 100644 (file)
@@ -13,4 +13,9 @@ sub two : Action Path("åäö") {
     $c->forward('TestApp::View::Dump::Request');
 }
 
+sub three :Path {
+    my ( $self, $c ) = @_;
+    $c->forward('TestApp::View::Dump::Request');
+}
+
 1;