Fix http server test, which also runs all the tests at a sub-path
Tomas Doran [Tue, 4 Dec 2012 21:58:30 +0000 (21:58 +0000)]
t/aggregate/live_component_controller_action_chained.t

index 5dd2293..b4907f7 100644 (file)
@@ -1109,7 +1109,8 @@ sub run_tests {
             get('http://localhost/' . $path),
             'request ' . $path . ' ok');
         my $exp = URI->new('http://localhost:3000' . $path);
-        my $got = URI->new($content);
+        my ($want) = $content =~ m{/chained/(.*)};
+        my $got = URI->new('http://localhost:3000/chained/' . $want);
         # Just check that the path matches, as who the hell knows or cares
         # where the app is based (live tests etc)
         is $got->path, $exp->path, "uri $path can round trip through uri_for (path)"