blob: 0ac96622c842d05d38b4261578a983b92fd37283 [file] [log] [blame]
# please insert nothing before this line: -*- mode: cperl; cperl-indent-level: 4; cperl-continued-statement-offset: 4; indent-tabs-mode: nil -*-
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest;
plan tests => 1;
my $location = '/TestFilter__in_error';
my $res = POST $location, content => 'foo';
ok t_cmp($res->code, 500, "an error in a filter should cause 500");