Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Path.pm
diff --git a/t/live/lib/TestApp/Controller/Action/Path.pm b/t/live/lib/TestApp/Controller/Action/Path.pm
deleted file mode 100644 (file)
index 1c36537..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-package TestApp::Controller::Action::Path;
-
-use strict;
-use base 'TestApp::Controller::Action';
-
-sub one : Action Path("a path with spaces") {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-sub two : Action Path("åäö") {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-sub three :Path {
-    my ( $self, $c ) = @_;
-    $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;