use
strict;
use
Apache::Test;
use
Apache::TestUtil;
use
Apache::TestRequest;
plan
tests
=> 2;
my
$location
=
"/TestApachePeek__basic"
;
my
$str
= GET_BODY
$location
;
ok
$str
;
unless
($@) {
ok t_cmp(
$str
,
qr/Apache2::Const.*?OK/
);
}
else
{
ok t_cmp(
$str
,
qr/Apache::Const.*?OK/
);
}