mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-04-28 16:01:29 +00:00
19 lines
391 B
Raku
Executable File
19 lines
391 B
Raku
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("spamd_stop");
|
|
|
|
use Test::More;
|
|
plan skip_all => "Spamd tests disabled" if $SKIP_SPAMD_TESTS;
|
|
plan tests => 2;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
q{ X-Spam-Status: Yes,}, 'status',
|
|
);
|
|
|
|
ok (sdrun ("-L", "< data/spam/001", \&patterns_run_cb));
|
|
ok_all_patterns();
|
|
|