~ubuntu-branches/ubuntu/utopic/spamassassin/utopic-updates

« back to all changes in this revision

Viewing changes to t/uribl_ips_only.t

  • Committer: Package Import Robot
  • Author(s): Noah Meyerhans
  • Date: 2014-02-14 22:45:15 UTC
  • mfrom: (0.8.1) (0.6.2) (5.1.22 sid)
  • Revision ID: package-import@ubuntu.com-20140214224515-z1es2twos8xh7n2y
Tags: 3.4.0-1
* New upstream version! (Closes: 738963, 738872, 738867)
* Scrub the environment when switching to the debian-spamd user in
  postinst and cron.daily. (Closes: 738951)
* Enhancements to postinst to better manage ownership of
  /var/lib/spamassassin, via Iain Lane <iain.lane@canonical.com>
  (Closes: 738974)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
use Test;
10
10
 
11
11
BEGIN {
12
 
  plan tests => (DO_RUN ? 2 : 0),
 
12
  plan tests => (DO_RUN ? 4 : 0),
13
13
};
14
14
 
15
15
exit unless (DO_RUN);
36
36
ok sarun ("-t < data/spam/dnsbl_ipsonly.eml 2>&1", \&patterns_run_cb);
37
37
ok_all_patterns();
38
38
 
 
39
%patterns = ( q{ X_URIBL_IPSONLY } => 'A' );
 
40
%anti_patterns = ();
 
41
 
 
42
clear_pattern_counters();
 
43
ok sarun ("-t < data/spam/dnsbl_domsonly.eml 2>&1", \&patterns_run_cb);
 
44
ok_all_patterns();
 
45