| # 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 = "/TestHooks__stacked_handlers"; | |
| my $expected = join "\n", qw(one two three), ''; | |
| my $received = GET_BODY $location; | |
| ok t_cmp($received, $expected, "stacked_handlers"); |