View | Details | Raw Unified | Return to bug 36815
Collapse All | Expand All

(-)a/t/db_dependent/Koha/Notice/Template.t (-1 / +64 lines)
Line 0 Link Here
0
- 
1
#!/usr/bin/perl
2
3
# Copyright 2024 Koha Development team
4
#
5
# This file is part of Koha
6
#
7
# Koha is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# Koha is distributed in the hope that it will be useful, but
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>
19
20
use Modern::Perl;
21
22
use Test::More tests => 2;
23
24
use_ok('Koha::Notice::Template');
25
26
subtest 'get_default() tests' => sub {
27
    plan tests => 2;
28
29
    my $module = 'circulation';
30
    my $code   = 'CHECKINSLIP';
31
    my $mtt    = 'print';
32
    my $lang   = 'en';
33
34
    my $template = Koha::Notice::Template->new(
35
        {
36
            module                 => $module,
37
            code                   => $code,
38
            message_transport_type => $mtt,
39
            lang                   => $lang
40
        }
41
    );
42
43
    my $sample = $template->get_default;
44
45
    # Expected content
46
    my $expected_sample = '<h3>[% branch.branchname %]</h3>
47
Checked in items for [% borrower.title %] [% borrower.firstname %] [% borrower.initials %] [% borrower.surname %] <br>
48
([% borrower.cardnumber %]) <br>
49
<br>
50
[% today | $KohaDates %]<br>
51
<br>
52
<h4>Checked in today</h4>
53
[% FOREACH checkin IN old_checkouts %]
54
[% SET item = checkin.item %]
55
<p>
56
[% item.biblio.title %] <br>
57
Barcode: [% item.barcode %] <br>
58
</p>
59
[% END %]';
60
61
    is( $sample, $expected_sample, "Content retrieved correctly" );
62
};
63
64
1;

Return to bug 36815