blob: d72e5422e497aeb716ca526b7ebffca942d5359a [file] [log] [blame]
#!/usr/bin/perl -T
use lib '.'; use lib 't';
use SATest; sa_t_init("reportheader");
use Test::More tests => 2;
$ENV{'LANGUAGE'} = $ENV{'LC_ALL'} = 'C'; # a cheat, but we need the patterns to work
# ---------------------------------------------------------------------------
%patterns = (
q{X-Spam-Report: =?ISO-8859-1?Q? }, 'qp-encoded-hdr',
q{ Invalid Date: header =ae =af =b0 foo }, 'qp-encoded-desc',
);
tstprefs ("
$default_cf_lines
report_safe 0
describe INVALID_DATE Invalid Date: header \xae \xaf \xb0 foo
");
sarun ("-L -t < data/spam/001", \&patterns_run_cb);
ok_all_patterns();