blob: 8c588473041fd0081caf472bc3375337635bc29e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestCommon ();
my $module = 'eat_post';
my $num = Apache::TestCommon::run_post_test_sizes();
plan tests => $num, need need_lwp, need_module($module);
Apache::TestCommon::run_post_test($module);
|