summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/php/strings.t
blob: 6effcc99070a64d92ce484f2f1314af05a5a8ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestRequest;

plan tests => 1, need_php;

my $expected = "\"	\\'\\n\\'a\\\\b\\";

my $result = GET_BODY "/php/strings.php";
ok $result eq $expected;