summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/t/50file.t
diff options
context:
space:
mode:
Diffstat (limited to 'debian/vendor-h2o/t/50file.t')
-rw-r--r--debian/vendor-h2o/t/50file.t22
1 files changed, 0 insertions, 22 deletions
diff --git a/debian/vendor-h2o/t/50file.t b/debian/vendor-h2o/t/50file.t
deleted file mode 100644
index c347406..0000000
--- a/debian/vendor-h2o/t/50file.t
+++ /dev/null
@@ -1,22 +0,0 @@
-use strict;
-use warnings;
-use Test::More;
-use t::Util;
-
-plan skip_all => 'curl not found'
- unless prog_exists('curl');
-
-subtest 'trailing-slash' => sub {
- my $server = spawn_h2o(<< "EOT");
-hosts:
- default:
- paths:
- /:
- file.dir: @{[DOC_ROOT]}
-EOT
-
- my $resp = `curl --silent --dump-header /dev/stderr http://127.0.0.1:$server->{port}/index.txt/ 2>&1 > /dev/null`;
- like $resp, qr{^HTTP/1.1 404 File Not Found}s, "status";
-};
-
-done_testing;