diff options
| author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-04-02 19:20:11 +0300 |
|---|---|---|
| committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-04-02 19:20:11 +0300 |
| commit | 151160c1103166810daddf1e9cc7135cb6ccc321 (patch) | |
| tree | d3f30502076f82237bc9d335a7408c7b88d121a5 /test/perl | |
| parent | 1583d659ab55bab88df0c69d29165e89a9612455 (diff) | |
| download | unit-151160c1103166810daddf1e9cc7135cb6ccc321.tar.gz unit-151160c1103166810daddf1e9cc7135cb6ccc321.tar.bz2 | |
Tests: Perl script with syntax error.
Diffstat (limited to 'test/perl')
| -rw-r--r-- | test/perl/syntax_error/psgi.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/perl/syntax_error/psgi.pl b/test/perl/syntax_error/psgi.pl new file mode 100644 index 00000000..2b6dbbea --- /dev/null +++ b/test/perl/syntax_error/psgi.pl @@ -0,0 +1,5 @@ +my $app = sub { + my ($environ) = @_ + + return ['200', [], []]; +}; |
