From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl -T
use lib '.'; use lib 't';
use SATest; sa_t_init("html_utf8");
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();