All tests successful :)
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Absoulte.pm
diff --git a/t/lib/TestApp/Controller/Action/Absoulte.pm b/t/lib/TestApp/Controller/Action/Absoulte.pm
deleted file mode 100644 (file)
index 0c04b54..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package TestApp::Controller::Action::Absoulte;
-
-use strict;
-use base 'TestApp::Controller::Action';
-
-sub action_absolute_one : Action Absolute {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-sub action_absolute_two : Action Global {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-sub action_absolute_three : Action Path('/action_absolute_three') {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-1;