You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
245 B
15 lines
245 B
10 years ago
|
#!/usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use utf8;
|
||
|
|
||
|
use LDV::Email;
|
||
|
use Test::More tests => 2;
|
||
|
|
||
|
my $email = LDV::Email->new({from => 'noreply@state.gov.no'});
|
||
|
isa_ok($email, "LDV::Email", "LDV::Email->new");
|
||
|
can_ok($email, qw(send));
|
||
|
|
||
|
exit 0;
|