From 480169e742947a0b4a9838c71ed9d85582d79f3e Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 19 Jul 2017 13:59:45 +0200 Subject: [PATCH] Bug 18951: Adjust Isbd.t Content-Type: text/plain; charset=utf-8 Add schema calls. Remove an unneeded AddBiblio call. Test plan: Run t/db_dependent/Biblio/Isbd.t Signed-off-by: Marcel de Rooy --- t/db_dependent/Biblio/Isbd.t | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/t/db_dependent/Biblio/Isbd.t b/t/db_dependent/Biblio/Isbd.t index be790e9..4943afe 100644 --- a/t/db_dependent/Biblio/Isbd.t +++ b/t/db_dependent/Biblio/Isbd.t @@ -22,14 +22,14 @@ use Test::MockModule; use MARC::Record; use t::lib::Mocks qw( mock_preference ); +use Koha::Database; + BEGIN { use_ok('C4::Biblio'); } -my $dbh = C4::Context->dbh; -# Start transaction -$dbh->{AutoCommit} = 0; -$dbh->{RaiseError} = 1; +my $schema = Koha::Database->new->schema; +$schema->storage->txn_begin; my $template = '#200|

Title : |{200a}{ by 200f}|

'; my $opac_template = '#200|

Title : |{200a}{ (200f)}|

'; @@ -41,10 +41,11 @@ $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, '

Title : Mountains by Keith Lye

', 'ISBD is correct'); my $opacisbd = GetISBDView({ record => $record, template => 'opac' }); is($opacisbd, '

Title : Mountains (Keith Lye)

', 'OPAC ISBD is correct'); + +$schema->storage->txn_rollback; -- 2.1.4