Bug 14056: Small punctuation error in description for deleting a holiday
[koha.git] / t / db_dependent / Category.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2014 - Koha Team
6 #
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.
11 #
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.
16 #
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>.
19
20 use Modern::Perl;
21 use t::lib::TestBuilder;
22 use Test::More tests => 3;
23
24 BEGIN {
25     use_ok('C4::Category');
26 }
27
28 my $builder = t::lib::TestBuilder->new();
29 my $nonexistent_categorycode = 'NONEXISTEN';
30 $builder->build({
31     source => 'Category',
32     value  => {
33         categorycode          => $nonexistent_categorycode,
34         description           => 'Desc',
35         enrolmentperiod       => 12,
36         enrolementperioddate  => '2014-01-02',
37         upperagelimit         => 99,
38         dateofbirthrequired   => 1,
39         enrolmentfee          => 1.5,
40         reservefee            => 2.5,
41         hidelostitems         => 0,
42         overduenoticerequired => 0,
43         category_type         => 'A',
44     },
45 });
46
47 my @categories = C4::Category->all;
48 ok( @categories, 'all returns categories' );
49
50 my $match = grep {$_->{categorycode} eq $nonexistent_categorycode } @categories;
51 is( $match, 1, 'all returns the inserted category');