blob: e2c0cc4f4caeecd3492f97631456c746719e77fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
plan tests => 1, need_module 'test_apr_uri';
my $body = GET_BODY '/test_apr_uri';
ok $body =~ /TOTAL\s+FAILURES\s*=\s*0/;
|