mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-05-28 10:13:34 +00:00
27 lines
562 B
Perl
Executable File
27 lines
562 B
Perl
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("html_obfu");
|
|
|
|
use Test::More;
|
|
plan skip_all => "Test requires Perl 5.8.5" unless $] > 5.008004;
|
|
plan tests => 2;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
q{ QUOTE_YOUR } => 'QUOTE_YOUR',
|
|
);
|
|
|
|
%anti_patterns = (
|
|
q{ OPPORTUNITY } => 'OPPORTUNITY',
|
|
);
|
|
|
|
tstlocalrules ('
|
|
body OPPORTUNITY /OPPORTUNITY/
|
|
# body QUOTE_YOUR /\x{201c}Your/
|
|
body QUOTE_YOUR /\xE2\x80\x9CYour/
|
|
');
|
|
sarun ("-L -t < data/spam/009", \&patterns_run_cb);
|
|
ok_all_patterns();
|