qpsmtpd/t/plugin_tests/auth/authdeny
2012-05-06 16:11:54 -07:00

15 lines
379 B
Perl

#!perl -w
sub register_tests {
my $self = shift;
$self->register_test("test_authdeny", 1);
}
sub test_authdeny {
my $self = shift;
my $address = Qpsmtpd::Address->parse('<me@example.com>');
my ($ret, $note) = $self->hook_auth($self->qp->transaction, 'bogus_method',
'bogus_user');
is ($ret, DECLINED, "bogus_user is not free to abuse my relay");
}