The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# testing APR::Table API
use strict;
use warnings FATAL => 'all';
use Apache::Const -compile => 'OK';
sub handler {
my $r = shift;
my $tests = TestAPRlib::table::num_of_tests();
plan $r, tests => $tests;
TestAPRlib::table::test();
Apache::OK;
}
1;