3 # This Koha test module is a stub!
4 # Add more tests here!!!
9 use Test
::More tests
=> 2;
11 my $module = new Test
::MockModule
('C4::Context');
15 my $dbh = DBI
->connect( 'DBI:Mock:', '', '' )
16 || die "Cannot create handle: $DBI::errstr\n";
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' );