]> git.donarmstrong.com Git - debbugs.git/blob - t/03_configuration.t
serve_cache is not exported by Debbugs::Libravatar
[debbugs.git] / t / 03_configuration.t
1 # -*- mode: cperl;-*-
2
3 use Test::More tests => 6;
4
5 use warnings;
6 use strict;
7
8 BEGIN{use_ok('Debbugs::Config',qw(:globals %config));}
9 ok($config{sendmail} eq '/usr/lib/sendmail', 'sendmail configuration set sanely');
10 ok($config{spam_scan} == 0, 'spam_scan set to 0 by default');
11 ok($gSendmail eq '/usr/lib/sendmail','sendmail global works');
12 ok($gSpamScan == 0 , 'spam_scan global works');
13 ok(defined $gStrongList,'strong_list global works');