blob: f0dd67eacdb9ee4bf62cfa0c764c1cfceed7ea92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
use Apache::TestUtil;
plan tests => 1, sub { need_php() && need_module('negotiation') };
my $result = GET_BODY "/php/virtual.php";
chomp $result;
ok t_cmp($result, "before file.html after",
"regression test for http://bugs.php.net/bug.php?id=30446");
|