Bug 16851: Move HasOverdues to Koha::Patron->has_overdues
[koha.git] / t / db_dependent / Koha / ItemTypes.t
1 #!/usr/bin/perl
2 #
3 # Copyright 2014 Catalyst IT
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 use Test::More tests => 18;
23 use Data::Dumper;
24 use Koha::Database;
25
26 BEGIN {
27     use_ok('Koha::ItemType');
28     use_ok('Koha::ItemTypes');
29 }
30
31 my $database = Koha::Database->new();
32 my $schema   = $database->schema();
33 $schema->txn_begin;
34
35 Koha::ItemType->new(
36     {
37         itemtype       => 'type1',
38         description    => 'description',
39         rentalcharge   => '0.00',
40         imageurl       => 'imageurl',
41         summary        => 'summary',
42         checkinmsg     => 'checkinmsg',
43         checkinmsgtype => 'checkinmsgtype',
44     }
45 )->store;
46
47 Koha::ItemType->new(
48     {
49         itemtype       => 'type2',
50         description    => 'description',
51         rentalcharge   => '0.00',
52         imageurl       => 'imageurl',
53         summary        => 'summary',
54         checkinmsg     => 'checkinmsg',
55         checkinmsgtype => 'checkinmsgtype',
56     }
57 )->store;
58
59 my $type = Koha::ItemTypes->find('type1');
60 ok( defined($type), 'first result' );
61 is( $type->itemtype,       'type1',          'itemtype/code' );
62 is( $type->description,    'description',    'description' );
63 is( $type->rentalcharge,   '0.0000',             'rentalcharge' );
64 is( $type->imageurl,       'imageurl',       'imageurl' );
65 is( $type->summary,        'summary',        'summary' );
66 is( $type->checkinmsg,     'checkinmsg',     'checkinmsg' );
67 is( $type->checkinmsgtype, 'checkinmsgtype', 'checkinmsgtype' );
68
69 $type = Koha::ItemTypes->find('type2');
70 ok( defined($type), 'second result' );
71 is( $type->itemtype,       'type2',          'itemtype/code' );
72 is( $type->description,    'description',    'description' );
73 is( $type->rentalcharge,   '0.0000',             'rentalcharge' );
74 is( $type->imageurl,       'imageurl',       'imageurl' );
75 is( $type->summary,        'summary',        'summary' );
76 is( $type->checkinmsg,     'checkinmsg',     'checkinmsg' );
77 is( $type->checkinmsgtype, 'checkinmsgtype', 'checkinmsgtype' );
78
79 $schema->txn_rollback;