qpsmtpd/t/plugin_tests.t
Matt Simerson 9c1e62371b added new t/config directory, with developer tests
run when $ENV{QPSMTPD_DEVELOPER} is set

plugins file is same as in config.sample, but with more stuff enabled
2012-06-04 03:34:48 -04:00

18 lines
274 B
Perl

#!/usr/bin/perl -w
use strict;
use lib 't';
use Test::Qpsmtpd;
my $qp = Test::Qpsmtpd->new();
$qp->run_plugin_tests();
foreach my $file (
"./t/config/greylist.dbm",
"./t/config/greylist.dbm.lock"
) {
next if ! -f $file;
unlink $file;
};