- Extra Path tests (thanks LTJake)
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Path.pm
index fd82c0c..1c36537 100644 (file)
@@ -18,4 +18,14 @@ sub three :Path {
     $c->forward('TestApp::View::Dump::Request');
 }
 
+sub four : Path( 'spaces_near_parens_singleq' ) {
+    my ( $self, $c ) = @_;
+    $c->forward('TestApp::View::Dump::Request');
+}
+
+sub five : Path( "spaces_near_parens_doubleq" ) {
+    my ( $self, $c ) = @_;
+    $c->forward('TestApp::View::Dump::Request');
+}
+
 1;