mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-08-15 23:17:10 +00:00
16 lines
314 B
Perl
Executable File
16 lines
314 B
Perl
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("nonspam");
|
|
use Test::More tests => 1;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
q{ X-Spam-Status: No, }, 'nonspam'
|
|
);
|
|
|
|
sarun ("-L -t < data/nice/001", \&patterns_run_cb);
|
|
ok_all_patterns();
|
|
|