10 lines
212 B
Perl
10 lines
212 B
Perl
use strict;
|
|
use warnings FATAL => 'all';
|
|
|
|
use Apache::Test;
|
|
use Apache::TestRequest;
|
|
|
|
plan tests => 1, need_php;
|
|
|
|
my $result = GET_BODY "/php/globals.php";
|
|
ok $result eq "1 5 2 2 10 5 2 5 3 2 10 5 3 5 4 2 \n";
|