The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestAPR::date;

# testing APR::Date API

use strict;
use warnings FATAL => 'all';

use Apache::Test;

use Apache2::Const -compile => 'OK';

use TestAPRlib::date;

sub handler {
    my $r = shift;

    my $num_of_tests = TestAPRlib::date::num_of_tests();
    plan $r, tests => $num_of_tests;

    TestAPRlib::date::test();

    Apache2::Const::OK;
}

1;
__END__