summaryrefslogtreecommitdiffhomepage
path: root/test/perl/body_io_file/psgi.pl
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-02-12 19:32:54 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-02-12 19:32:54 +0300
commite2c3fa630469bf006de5a983910e391c5889430d (patch)
tree2021663f938438db7c18b3bcc87b6402b6d6b5e1 /test/perl/body_io_file/psgi.pl
parent9646772a00e50c437e0b3204ce6233b6414e1053 (diff)
downloadunit-e2c3fa630469bf006de5a983910e391c5889430d.tar.gz
unit-e2c3fa630469bf006de5a983910e391c5889430d.tar.bz2
Tests: perl module.
Diffstat (limited to 'test/perl/body_io_file/psgi.pl')
-rw-r--r--test/perl/body_io_file/psgi.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/perl/body_io_file/psgi.pl b/test/perl/body_io_file/psgi.pl
new file mode 100644
index 00000000..2612ae18
--- /dev/null
+++ b/test/perl/body_io_file/psgi.pl
@@ -0,0 +1,7 @@
+my $app = sub {
+ my ($environ) = @_;
+
+ open my $io, '<file';
+
+ return ['200', ['Content-Length' => 5], $io];
+};