/[notice-sender]/trunk/t/1_nos.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/t/1_nos.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 31 by dpavlin, Mon May 16 22:04:40 2005 UTC revision 32 by dpavlin, Mon May 16 22:32:58 2005 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 5;  use Test::More tests => 23;
7    
8  BEGIN { use_ok('Nos') };  BEGIN { use_ok('Nos') };
9    
10  ok(my $nos = new Nos('dsn' => 'dbi:Pg:dbname=notices'), "new");  ok(my $nos = new Nos('dsn' => 'dbi:Pg:dbname=notices'), "new");
11    
12  ok($nos->_add_list( list => 'My list', email => 'my-list@example.com'), "_add_list");  ok($nos->_add_list( list => 'My list', email => 'my-list@example.com'), "_add_list");
13    ok($nos->_get_list('My list'), "_get_list");
14    
15  ok($nos->add_member_to_list( list => 'My list', email => 'foo@example.com' ), "add_member_to_list");  ok($nos->_add_list( list => 'Another list', email => 'list2@example.com'), "_add_list");
16    ok($nos->_get_list('Another list'), "_get_list");
17    
18  ok($nos->add_message_to_list( list => 'My list', message => 'Subject: test\nJust a test' ), "add_message_to_list");  foreach my $email (qw(foo@example.com bar@example.com baz@example.com)) {
19            ok($nos->add_member_to_list( list => 'My list', email => $email ), "add_member_to_list $email");
20            ok($nos->add_member_to_list( list => 'Another list', email => $email ), "add_member_to_list $email");
21    }
22    
23    ok($nos->add_message_to_list( list => 'My list', message => "Subject: test\nJust a test" ), "add_message_to_list");
24    
25    foreach my $i ( 1 .. 10 ) {
26            ok($nos->add_message_to_list( list => 'Another list', message => "Subject: test $i" ), "add_message_to_list");
27    }

Legend:
Removed from v.31  
changed lines
  Added in v.32

  ViewVC Help
Powered by ViewVC 1.1.26