Bug 10508: add unit tests for C4::Branch
[koha.git] / t / Letters.t
blob2d5f557bc2f2f8015aaf65f5a83052df6fc06203
1 #!/usr/bin/perl
3 # This Koha test module is a stub!
4 # Add more tests here!!!
6 use strict;
7 use warnings;
8 use Test::MockModule;
9 use Test::More tests => 2;
11 my $module = new Test::MockModule('C4::Context');
12 $module->mock(
13 '_new_dbh',
14 sub {
15 my $dbh = DBI->connect( 'DBI:Mock:', '', '' )
16 || die "Cannot create handle: $DBI::errstr\n";
17 return $dbh;
20 my $mock_letters = [
21 [ 'module', 'code', 'branchcode', 'name', 'is_html', 'title', 'content' ],
22 [ 'blah', 'ISBN', 'NBSI', 'book', 1, 'green', 'blahblah' ],
23 [ 'bleh', 'ISSN', 'NSSI', 'page', 0, 'blue', 'blehbleh' ]
26 use_ok('C4::Letters');
28 my $dbh = C4::Context->dbh();
30 $dbh->{mock_add_resultset} = $mock_letters;
32 my $letters = C4::Letters::GetLetters();
34 is( $letters->{ISBN}, 'book', 'HASH ref of ISBN is book' );