Bug 28278: Add unit test for Koha::Config::read_from_file
[koha.git] / t / Installer_pm.t
1 #!/usr/bin/perl
2 #
3 use strict;
4 use warnings;
5
6 use Test::More tests => 2;
7 use Data::Dumper;
8
9 BEGIN {
10     use_ok('C4::Installer::PerlModules');
11 }
12
13 my $obj = C4::Installer::PerlModules->new;
14
15 isa_ok($obj,'C4::Installer::PerlModules');