From c9aacca4685d30997192bd52e539198eb98d8cd3 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Sat, 10 Nov 2012 14:03:11 -0500 Subject: [PATCH] Bug 9053: Test::MockModule and DBD::Mock should be required Test::MockModule and DBD::Mock are required for the unit tests in t/ to run. This is good, but means they should be required. --- C4/Installer/PerlDependencies.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index abd8b65..71f35d4 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -576,12 +576,12 @@ our $PERL_DEPS = { }, 'DBD::Mock' => { 'usage' => 'Core', - 'required' => '0', + 'required' => '1', 'min_ver' => '1.39' }, 'Test::MockModule' => { 'usage' => 'Core', - 'required' => '0', + 'required' => '1', 'min_ver' => '0.05', }, 'Test::Warn' => { -- 1.7.9.5