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