qpsmtpd/t/plugin_tests.t
2013-08-05 15:05:15 -07:00

15 lines
245 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;
}