summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/apache/pr35330.t
diff options
context:
space:
mode:
Diffstat (limited to 'debian/perl-framework/t/apache/pr35330.t')
-rw-r--r--debian/perl-framework/t/apache/pr35330.t16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/perl-framework/t/apache/pr35330.t b/debian/perl-framework/t/apache/pr35330.t
new file mode 100644
index 0000000..e5fe01f
--- /dev/null
+++ b/debian/perl-framework/t/apache/pr35330.t
@@ -0,0 +1,16 @@
+#
+# Regression test for PR 35330
+#
+use strict;
+use warnings FATAL => 'all';
+
+use Apache::Test;
+use Apache::TestRequest;
+use Apache::TestUtil;
+
+plan tests => 2, need 'include';
+
+my $r = GET '/apache/htaccess/override/hello.shtml';
+
+ok t_cmp($r->code, 200, "SSI was allowed for location");
+ok t_cmp($r->content, "hello", "file was served with correct content");