Bug 19735: Move Perl deps definitions into a cpanfile
[koha-ffzg.git] / t / Installer_pm.t
index 7378172..0ed28ee 100755 (executable)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4;
+use Test::More tests => 2;
 use Data::Dumper;
 
 BEGIN {
@@ -13,13 +13,3 @@ BEGIN {
 my $obj = C4::Installer::PerlModules->new;
 
 isa_ok($obj,'C4::Installer::PerlModules');
-
-my $module_info = $obj->version_info('Test::More');
-
-my $control = $Test::More::VERSION;
-
-like($module_info->{cur_ver}, qr/\d/, 'returns numeric version');
-
-is($module_info->{cur_ver}, $control, 'returns correct version');
-
-