blob: 20497d86965fa2e9d5aa80053036f85cad562039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest;
plan tests => 1, need 'rewrite';
my $rc;
$rc = GET_RC "/security/CAN-2003-0542/nonesuch";
ok t_cmp($rc, 404, "CAN-2003-0542 test case");
|