Bug 13095: An email will be sent shortly
[koha.git] / t / Koha_Email.t
blob764f5c19aa7802f200a712b8f348a08f51a01935
1 use Modern::Perl;
3 use Test::More tests => 4;                      # last test to print
5 use_ok('Koha::Email');
7 my $from = 'chrisc@catalyst.net.nz';
9 ok( my $email = Koha::Email->new(), 'Create a Koha::Email Object');
10 ok( my %mail = $email->create_message_headers({from => $from}),'Set headers');
11 is ($mail{'From'}, $from, 'Set correctly');