blob: 0632bfa22fa4e634cc617ad24c68e2fe802d9cc4 [file] [log] [blame]
package TestAPR::string;
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache2::Const -compile => 'OK';
require TestAPRlib::string;
sub handler {
my $r = shift;
my $num_of_tests = TestAPRlib::string::num_of_tests();
plan $r, tests => $num_of_tests;
TestAPRlib::string::test();
Apache2::Const::OK;
}
1;
__END__