Bug 23321: Add cash register management
[koha.git] / t / db_dependent / Koha / Cash / Register.t
1 #!/usr/bin/perl
2
3 # Copyright 2019 Koha Development team
4 #
5 # This file is part of Koha
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
22 use Test::More tests => 1;
23
24 use C4::Context;
25
26 use Koha::Library;
27 use Koha::Libraries;
28 use Koha::Database;
29
30 use t::lib::TestBuilder;
31
32 my $builder = t::lib::TestBuilder->new;
33 my $schema  = Koha::Database->new->schema;
34
35 subtest 'library' => sub {
36     plan tests => 2;
37
38     $schema->storage->txn_begin;
39
40     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
41     my $register = $builder->build_object(
42         {
43             class => 'Koha::Cash::Registers',
44             value => { branch => $library->branchcode },
45         }
46     );
47
48     is( ref( $register->library ),
49         'Koha::Library',
50         'Koha::Cash::Register->library should return a Koha::Library' );
51
52     is( $register->library->id,
53         $library->id,
54         'Koha::Cash::Register->library returns the correct Koha::Library' );
55
56     $schema->storage->txn_rollback;
57 };