blob: 9b1a875510259f40601816799bbe7472016e6d68 [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::TestRequest;
use Apache::TestUtil;
plan tests => 1;
my $location = '/TestFilter__out_str_subreq_modperl';
my $content1 = "content\n";
my $content2 = "more content\n";
my $filter = "filter\n";
my $subrequest = "modperl subrequest\n";
my $expected = join '', $content1, $subrequest, $content2, $filter;
my $received = GET_BODY $location;
ok t_cmp($received, $expected,
"testing filter-originated lookup_uri() call to modperl-served URI");