Merge branch 'bug_9734' into 3.12-master

This commit is contained in:
Jared Camins-Esakov 2013-03-11 07:33:33 -04:00
commit 5bdc68837b
2 changed files with 3 additions and 2 deletions

View file

@ -631,7 +631,7 @@ our $PERL_DEPS = {
},
'String::Random' => {
'usage' => 'OpacSelfRegistration',
'required' => '0',
'required' => '1',
'min_ver' => '0.22',
},
};

View file

@ -6,7 +6,7 @@
use strict;
use warnings;
use Test::More tests => 15;
use Test::More tests => 16;
BEGIN {
use_ok('C4::Installer::PerlModules');
@ -35,3 +35,4 @@ ok ($modules->module_count() >10 , 'count should be greater than 10');
my @module_list = $modules->module_list;
%params = map { $_ => 1 } @module_list;
ok (exists($params{"DBI"}), 'DBI exists in array');
is ($modules->required('module'=>"String::Random"),1, 'String::Random should return 1 since required');