From 2ff0a1901812080575818b7caa2a13b0d14587c5 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Wed, 10 Oct 2012 20:48:54 -0400 Subject: [PATCH] Bug 8636: Add dependency on Test::Deep The test t/db_dependent/Koha.t uses Test::Deep to compare data structures, but that dependency was not listed for the installer. --- C4/Installer/PerlDependencies.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index be80a9a..5cfb059 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -593,7 +593,11 @@ our $PERL_DEPS = { 'usage' => 'Core', 'required' => '0', 'min_ver' => '0.14', - + }, + 'Test::Deep' => { + 'usage' => 'Core', + 'required' => '0', + 'min_ver' => '0.106', }, 'Test::YAML::Valid' => { 'usage' => 'Core', -- 1.7.9.5