#!/usr/bin/perl -T
use
Test::More;
plan
tests
=> 2;
# ---------------------------------------------------------------------------
%patterns
= (
q{ 1.0 QUOTE_YOUR }
=>
''
,
);
%anti_patterns
= (
q{ 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();