~ubuntu-branches/ubuntu/utopic/spamassassin/utopic-proposed

« back to all changes in this revision

Viewing changes to t/db_based_whitelist.t

  • Committer: Bazaar Package Importer
  • Author(s): Noah Meyerhans
  • Date: 2010-01-26 22:53:12 UTC
  • mfrom: (1.1.13 upstream) (5.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100126225312-wkftb10idc1kz2aq
Tags: 3.3.0-1
* New upstream version.
* Switch to dpkg-source 3.0 (quilt) format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
2
 
3
3
use lib '.'; use lib 't';
 
4
 
4
5
use SATest; sa_t_init("db_based_whitelist");
5
 
use Test; BEGIN { plan tests => 8 };
 
6
use Test;
 
7
 
 
8
use constant TEST_ENABLED => conf_bool('run_long_tests');
 
9
BEGIN { 
 
10
  plan tests => (TEST_ENABLED ? 8 : 0);
 
11
};
 
12
exit unless TEST_ENABLED;
6
13
 
7
14
# ---------------------------------------------------------------------------
8
15