updated absolute/relative tests/classes to global/local.
[catagits/Catalyst-Runtime.git] / t / component / controller / action / global.t
index f859107..a5435cf 100644 (file)
@@ -11,28 +11,28 @@ use Catalyst::Test 'TestApp';
 
 
 {
-    ok( my $response = request('http://localhost/action_absolute_one'), 'Request' );
+    ok( my $response = request('http://localhost/action_global_one'), 'Request' );
     ok( $response->is_success, 'Response Successful 2xx' );
     is( $response->content_type, 'text/plain', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'action_absolute_one', 'Test Action' );
-    is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Absolute', 'Test Class' );
+    is( $response->header('X-Catalyst-Action'), 'action_global_one', 'Test Action' );
+    is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Global', 'Test Class' );
     like( $response->content, qr/^bless\( .* 'Catalyst::Request' \)$/s, 'Content is a serialized Catalyst::Request' );
 }
 
 {
-    ok( my $response = request('http://localhost/action_absolute_two'), 'Request' );
+    ok( my $response = request('http://localhost/action_global_two'), 'Request' );
     ok( $response->is_success, 'Response Successful 2xx' );
     is( $response->content_type, 'text/plain', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'action_absolute_two', 'Test Action' );
-    is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Absolute', 'Test Class' );
+    is( $response->header('X-Catalyst-Action'), 'action_global_two', 'Test Action' );
+    is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Global', 'Test Class' );
     like( $response->content, qr/^bless\( .* 'Catalyst::Request' \)$/s, 'Content is a serialized Catalyst::Request' );
 }
 
 {
-    ok( my $response = request('http://localhost/action_absolute_three'), 'Request' );
+    ok( my $response = request('http://localhost/action_global_three'), 'Request' );
     ok( $response->is_success, 'Response Successful 2xx' );
     is( $response->content_type, 'text/plain', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'action_absolute_three', 'Test Action' );
-    is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Absolute', 'Test Class' );
+    is( $response->header('X-Catalyst-Action'), 'action_global_three', 'Test Action' );
+    is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Global', 'Test Class' );
     like( $response->content, qr/^bless\( .* 'Catalyst::Request' \)$/s, 'Content is a serialized Catalyst::Request' );
 }