1# please insert nothing before this line: -*- mode: cperl; cperl-indent-level: 4; cperl-continued-statement-offset: 4; indent-tabs-mode: nil -*-
2package TestAPR::util;
3
4# test APR::Util
5
6use strict;
7use warnings FATAL => 'all';
8
9use Apache::Test;
10
11use Apache2::Const -compile => 'OK';
12
13use TestAPRlib::util;
14
15sub handler {
16    my $r = shift;
17
18    my $num_of_tests = TestAPRlib::util::num_of_tests();
19    plan $r, tests => $num_of_tests;
20
21    TestAPRlib::util::test();
22
23    Apache2::Const::OK;
24}
25
261;
27