summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/php/strings.t
diff options
context:
space:
mode:
Diffstat (limited to 'debian/perl-framework/t/php/strings.t')
-rw-r--r--debian/perl-framework/t/php/strings.t12
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/perl-framework/t/php/strings.t b/debian/perl-framework/t/php/strings.t
new file mode 100644
index 0000000..6effcc9
--- /dev/null
+++ b/debian/perl-framework/t/php/strings.t
@@ -0,0 +1,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;