typo in Chained docs
[catagits/Catalyst-Runtime.git] / t / live_engine_request_uri.t
index dba622f..943b276 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use FindBin;\r
 use lib "$FindBin::Bin/lib";\r
 \r
-use Test::More tests => 38;\r
+use Test::More tests => 44;\r
 use Catalyst::Test 'TestApp';\r
 use Catalyst::Request;\r
 \r
@@ -84,9 +84,23 @@ my $creq;
     is( $response->header( 'X-Catalyst-Param-b' ), '1', 'param "b" ok' );\r
 }\r
 \r
+# test that uri_with replaces params (and preserves)\r
+{\r
+    ok( my $response = request('http://localhost/engine/request/uri/uri_with_object'), 'Request' );\r
+    ok( $response->is_success, 'Response Successful 2xx' );\r
+    like( $response->header( 'X-Catalyst-Param-a' ), qr(http://localhost[^/]*/), 'param "a" ok' );\r
+}\r
+\r
 # test that uri_with is utf8 safe\r
 {\r
     ok( my $response = request("http://localhost/engine/request/uri/uri_with_utf8"), 'Request' );\r
     ok( $response->is_success, 'Response Successful 2xx' );\r
     like( $response->header( 'X-Catalyst-uri-with' ), qr/%E2%98%A0$/, 'uri_with ok' );\r
 }\r
+
+# test with undef -- no warnings should be thrown\r
+{\r
+    ok( my $response = request("http://localhost/engine/request/uri/uri_with_undef"), 'Request' );\r
+    ok( $response->is_success, 'Response Successful 2xx' );\r
+    is( $response->header( 'X-Catalyst-warnings' ), 0, 'no warnings emitted' );\r
+}\r