3 # This is to test C4/Members
4 # It requires a working Koha database with the sample data
8 use Test::More tests => 2;
11 use_ok('C4::Members');
14 my @borrowers_columns = C4::Members::columns;
16 $#borrowers_columns > 1,
17 'C4::Member->column returned a reasonable number of columns ('
18 . ( $#borrowers_columns + 1 ) . ')'
21 'WARNING: Check that the borrowers table exists and has the correct fields defined.'