Bug 16699: Remove requirement from borrowernumberQueryParam
[koha.git] / t / db_dependent / Category.t
blob93fd0dfd3a3c9048f15f745a912ed08d065f8494
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright 2014 - Koha Team
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
22 use t::lib::TestBuilder;
23 use Test::More tests => 3;
25 use Koha::Database;
27 BEGIN {
28 use_ok('C4::Category');
31 my $schema = Koha::Database->new->schema;
32 $schema->storage->txn_begin;
34 my $builder = t::lib::TestBuilder->new();
36 my $nonexistent_categorycode = 'NONEXISTEN';
37 $builder->build({
38 source => 'Category',
39 value => {
40 categorycode => $nonexistent_categorycode,
41 description => 'Desc',
42 enrolmentperiod => 12,
43 enrolementperioddate => '2014-01-02',
44 upperagelimit => 99,
45 dateofbirthrequired => 1,
46 enrolmentfee => 1.5,
47 reservefee => 2.5,
48 hidelostitems => 0,
49 overduenoticerequired => 0,
50 category_type => 'A',
52 });
54 my @categories = C4::Category->all;
55 ok( @categories, 'all returns categories' );
57 my $match = grep {$_->{categorycode} eq $nonexistent_categorycode } @categories;
58 is( $match, 1, 'all returns the inserted category');
60 $schema->storage->txn_rollback;