mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-04-28 16:01:29 +00:00
20 lines
428 B
Raku
Executable File
20 lines
428 B
Raku
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("spamd_symbols");
|
|
|
|
use Test::More;
|
|
plan skip_all => "Spamd tests disabled" if $SKIP_SPAMD_TESTS;
|
|
plan tests => 3;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
',TEST_ENDSNUMS,', 'endsinnums',
|
|
',TEST_NOREALNAME,', 'noreal',
|
|
);
|
|
|
|
ok (sdrun ("-L", "-y < data/spam/001", \&patterns_run_cb));
|
|
ok_all_patterns();
|
|
|