--- trunk/t/1_load.t 2005/05/15 22:30:54 24 +++ trunk/t/1_load.t 2005/05/16 13:52:43 25 @@ -3,7 +3,9 @@ use strict; use blib; -use Test::More tests => 2; +use Test::More tests => 3; BEGIN { use_ok('Nos') }; ok(my $nos = new Nos('dsn' => 'dbi:Pg:dbname=notices'), "new"); + +ok($nos->add_member_to_list( list => 'My list', email => 'foo@example.com' ), "add_member_to_list");