summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/Apache-Test/t/response/TestMore/testpm.pm
blob: 8c550ed5a4a4a683bef2d6cce9e306c170d73406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package TestMore::testpm;

use strict;
use warnings FATAL => qw(all);

use Apache::Test;
use Apache::TestUtil;

sub handler {

  plan shift, tests => 1;

  ok t_cmp(1, 1, 'called Apache::Test::ok()');

  0;
}

1;