All tests successful :)
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Absolute.pm
diff --git a/t/lib/TestApp/Controller/Action/Absolute.pm b/t/lib/TestApp/Controller/Action/Absolute.pm
new file mode 100644 (file)
index 0000000..91e77ba
--- /dev/null
@@ -0,0 +1,21 @@
+package TestApp::Controller::Action::Absolute;
+
+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;