qpsmtpd/t/plugin_tests/content_log

17 lines
266 B
Plaintext
Raw Normal View History

2014-12-03 00:02:45 +01:00
#!perl -w
use strict;
use warnings;
sub register_tests {
my ( $self ) = @_;
$self->register_test('test_content_log_file');
}
sub test_content_log_file {
my ( $self ) = @_;
ok( $self->content_log_file, 'content_log_file() returns something' );
}