blob: 19bdfd07bd6682e5dde5ed3ae46ca0479f4d669c [file] [log] [blame]
#!/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();