updated absolute/relative tests/classes to global/local.
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Forward.pm
index 9bb4ae7..8a88e7f 100644 (file)
@@ -42,4 +42,10 @@ sub inheritance : Relative {
     $c->forward('five');
 }
 
+sub global : Relative {
+    my ( $self, $c ) = @_;
+    $c->forward('/global_action');
+}
+
+
 1;