From 752c8bf043f6255bd53d7ffcaa2dfec1abc918a8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 18 Nov 2014 10:56:52 +0100 Subject: [PATCH] Bug 13276: use t::lib::Mocks::mock_dbh To use this patch, patch from bug 13274 should be applied too. Signed-off-by: Tomas Cohen Arazi --- t/XSLT.t | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/t/XSLT.t b/t/XSLT.t index 347d37222e..21c2e931f5 100755 --- a/t/XSLT.t +++ b/t/XSLT.t @@ -20,18 +20,13 @@ use Modern::Perl; use Test::More tests => 8; use File::Temp; use File::Path qw/make_path/; -use Test::MockModule; -use DBD::Mock; -# Mock the DB connexion and C4::Context -my $context = new Test::MockModule('C4::Context'); -$context->mock( '_new_dbh', sub { - my $dbh = DBI->connect( 'DBI:Mock:', '', '' ) - || die "Cannot create handle: $DBI::errstr\n"; - return $dbh; -}); +use t::lib::Mocks; -use_ok('C4::XSLT'); +BEGIN { + my $context_module = t::lib::Mocks::mock_dbh; + use_ok('C4::XSLT'); +}; my $dir = File::Temp->newdir(); my @themes = ('prog', 'test'); -- 2.39.5