diff --git a/t/perl/test_hello.psgi b/t/perl/test_hello.psgi new file mode 100644 index 00000000..6c418b2f --- /dev/null +++ b/t/perl/test_hello.psgi @@ -0,0 +1,8 @@ +use strict; +use warnings; + +sub { + my $env = shift; + + return [200, [], [ "Hello, world!" ]]; +}