qpsmtpd/t/plugin_tests.t
Matt Simerson b00f4c7793 initial import - based on my qpsmtpd fork
which will merge into the main branch fairly easily
2012-06-22 05:38:01 -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;
};