summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-11-07 21:13:00 -0600
committerJesse Luehrs <doy@tozt.net>2012-11-07 21:13:27 -0600
commitfa1739216edbd6ee5901b3752340d102c5935c3c (patch)
treee65e3eefaf45638716f9e365edf3954b43b548cc /t
parentdb0f5864ddf6bc81006bc98b933f14da0940fb67 (diff)
downloadweb-request-fa1739216edbd6ee5901b3752340d102c5935c3c.tar.gz
web-request-fa1739216edbd6ee5901b3752340d102c5935c3c.zip
remove test for invalid header
Diffstat (limited to 't')
-rw-r--r--t/response-compatible.t9
1 files changed, 0 insertions, 9 deletions
diff --git a/t/response-compatible.t b/t/response-compatible.t
index daf2c54..402d827 100644
--- a/t/response-compatible.t
+++ b/t/response-compatible.t
@@ -8,15 +8,6 @@ use Web::Response;
{
my $res = Web::Response->new;
$res->status(200);
- $res->header("Foo:Bar" => "baz");
- $res->content("Hello");
-
- is_deeply $res->finalize, [ 200, [ 'Foo:Bar' => 'baz' ], ["Hello"] ];
-}
-
-{
- my $res = Web::Response->new;
- $res->status(200);
$res->header("Foo\000Bar" => "baz");
$res->header("Qux\177Quux" => "42");
$res->content("Hello");