mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-08-17 00:28:29 +00:00
24 lines
484 B
Raku
Executable File
24 lines
484 B
Raku
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("gtube");
|
|
|
|
use Test::More tests => 4;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
q{ 1000 GTUBE }, 'gtube',
|
|
);
|
|
|
|
ok (sarun ("-L -t < data/spam/gtube.eml", \&patterns_run_cb));
|
|
ok_all_patterns();
|
|
|
|
%patterns = (
|
|
qr/^X-Spam-Status: No/m, 'not_marked_as_spam_from_awl_bonus',
|
|
);
|
|
|
|
ok (sarun ("-L -t < data/nice/not_gtube.eml", \&patterns_run_cb));
|
|
ok_all_patterns();
|
|
|