blob: 824f8392c4ee193010dbde10bde9d189deaff293 [file] [log] [blame]
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest qw(GET);
plan tests => 2;
my $url = "/registry/206.pl";
my $res = GET($url);
my $body = '<?xml versi';
ok t_cmp(
$res->code,
206,
"test partial_content: response code",
);
ok t_cmp(
$res->content,
$body,
"test partial_content: response body",
);