summaryrefslogtreecommitdiffhomepage
path: root/test/perl/errors_print/psgi.pl
blob: e50ec65d41fd3490901dbeb61e4a13fca5c61422 (plain) (blame)
1
2
3
4
5
6
7
my $app = sub {
    my ($environ) = @_;

    my $result = $environ->{'psgi.errors'}->print('Error in application');

    return ['200', ['Content-Length' => '1'], [$result]];
};