Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!perl
use 5.006;
use strict;
use warnings FATAL => 'all';
use lib 't';
if ( $ENV{SKIP_MILTER_TESTS} ) {
plan( skip_all => "Tests skipped by environment" );
}
if ( ! -e 't/00-load.t' ) {
die 'Could not find required files, are we in the correct directory?';
}
chdir 't';
plan tests => 31;
{
# system 'rm -rf tmp';
mkdir 'tmp';
mkdir 'tmp/result';
AuthMilterTest::run_milter_processing();
};