The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# 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::TestRequest;
use Apache::TestUtil;

plan tests => 1;

my $expected = 11; # 10 flushes and 1 EOS bb

my $location = '/TestFilter__out_str_declined';
my $response = GET_BODY $location;
ok t_cmp($response, $expected, "an output filter handler returning DECLINED");