blob: ebd52f06134eb2f7169171cff5fcebd74c4e5199 [file] [log] [blame]
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest qw(GET);
plan tests => 2, need 'mod_alias.c';
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",
);