From 9ea8f4f07c61e87cc5c5f06786ea17e5e976e9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Wed, 30 Apr 2014 17:59:41 +0000 Subject: [PATCH] t/perl/test_hello.psgi: perl test file that does nothing but hello, world To test a bare-minimal Perl program that does almost nothing at all. --- t/perl/test_hello.psgi | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 t/perl/test_hello.psgi 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!" ]]; +}