From e2c3fa630469bf006de5a983910e391c5889430d Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 12 Feb 2018 19:32:54 +0300 Subject: Tests: perl module. --- test/perl/body_array/psgi.pl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/perl/body_array/psgi.pl (limited to 'test/perl/body_array/psgi.pl') diff --git a/test/perl/body_array/psgi.pl b/test/perl/body_array/psgi.pl new file mode 100644 index 00000000..19c89abb --- /dev/null +++ b/test/perl/body_array/psgi.pl @@ -0,0 +1,5 @@ +my $app = sub { + my ($environ) = @_; + + return ['200', ['Content-Length' => '10'], ['012', '345', '678', '9']]; +}; -- cgit