Bug 12708 - Unexpected behaviour in IE 9 and lower when using openWindow
[koha.git] / t / db_dependent / Members_columns.t
blob5b7ffe020072aa52376aa0b756d0b3d246542acd
1 #!/usr/bin/perl
3 # This is to test C4/Members
4 # It requires a working Koha database with the sample data
6 use Modern::Perl;
8 use Test::More tests => 2;
10 BEGIN {
11 use_ok('C4::Members');
14 my @borrowers_columns = C4::Members::columns;
15 ok(
16 $#borrowers_columns > 1,
17 'C4::Member->column returned a reasonable number of columns ('
18 . ( $#borrowers_columns + 1 ) . ')'
20 or diag(
21 'WARNING: Check that the borrowers table exists and has the correct fields defined.'
24 exit;