Jonathan Druart
08f7baf3e3
On commit cadf5aea81
Bug 11592: MARCView and ISBD followup
The prototype of C4::Biblio::GetISBDView has been changed to take a
hashref in parameter.
But the tests have not been updated
Test plan:
prove t/Biblio/Isbd.t
should return green
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
https://bugs.koha-community.org/show_bug.cgi?id=17637
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
50 lines
1.6 KiB
Perl
50 lines
1.6 KiB
Perl
#!/usr/bin/perl
|
|
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use Test::More tests => 3;
|
|
use Test::MockModule;
|
|
use MARC::Record;
|
|
use t::lib::Mocks qw( mock_preference );
|
|
|
|
BEGIN {
|
|
use_ok('C4::Biblio');
|
|
}
|
|
|
|
my $dbh = C4::Context->dbh;
|
|
# Start transaction
|
|
$dbh->{AutoCommit} = 0;
|
|
$dbh->{RaiseError} = 1;
|
|
|
|
my $template = '#200|<h2>Title : |{200a}{ by 200f}|</h2>';
|
|
my $opac_template = '#200|<h2>Title : |{200a}{ (200f)}|</h2>';
|
|
t::lib::Mocks::mock_preference('isbd', $template);
|
|
t::lib::Mocks::mock_preference('opacisbd', $opac_template);
|
|
|
|
my $record = MARC::Record->new();
|
|
$record->append_fields(
|
|
MARC::Field->new('200', '', '', 'a' => 'Mountains'),
|
|
MARC::Field->new('200', '', '', 'f' => 'Keith Lye'),
|
|
);
|
|
my ($bibnum, $title, $bibitemnum) = AddBiblio($record, '');
|
|
|
|
my $isbd = GetISBDView({ record => $record });
|
|
is($isbd, '<h2>Title : Mountains by Keith Lye</h2>', 'ISBD is correct');
|
|
|
|
my $opacisbd = GetISBDView({ record => $record, template => 'opac' });
|
|
is($opacisbd, '<h2>Title : Mountains (Keith Lye)</h2>', 'OPAC ISBD is correct');
|