Merge remote-tracking branch 'origin/new/bug_6865'
[koha.git] / t / db_dependent / Csv.t
1 #!/usr/bin/perl
2 #
3 # This Koha test module is a stub!  
4 # Add more tests here!!!
5
6 use strict;
7 use warnings;
8
9 use Test::More tests => 4;
10
11 BEGIN {
12         use_ok('C4::Csv');
13 }
14
15 ok(C4::Csv::GetCsvProfiles(), 'test getting csv profiles');
16 is(C4::Csv::GetCsvProfile(),undef, 'test getting csv profiles');
17
18 ok(C4::Csv::GetCsvProfilesLoop(), 'test getting profile loop');