Merge pull request #612 from avar/add-perl-hello-world-test-file

t/perl/test_hello.psgi: perl test file that does nothing but hello, worl...
This commit is contained in:
unbit
2014-04-30 21:44:32 +02:00
+8
View File
@@ -0,0 +1,8 @@
use strict;
use warnings;
sub {
my $env = shift;
return [200, [], [ "Hello, world!" ]];
}