- Fixed #15999 return a 500 response when message is empty, reported by Chris Dolan...
[catagits/HTTP-Request-AsCGI.git] / t / 08error.t
CommitLineData
4e0afe7d 1#!perl
2
3use Test::More tests => 6;
4
5use strict;
6use warnings;
7
8use IO::File;
9use HTTP::Request;
10use HTTP::Request::AsCGI;
11
12my $response;
13
14{
15 my $r = HTTP::Request->new( GET => 'http://www.host.com/' );
16 my $c = HTTP::Request::AsCGI->new($r);
17
18 $c->setup;
19
20 $response = $c->restore->response;
21}
22
23isa_ok( $response, 'HTTP::Response' );
24is( $response->code, 500, 'Response Code' );
25is( $response->message, 'Internal Server Error', 'Response Message' );
26is( $response->protocol, 'HTTP/1.1', 'Response Protocol' );
27is( $response->content_type, 'text/html', 'Response Content-Type' );
28ok( length($response->content) > 0, 'Response Content' );