Bug 18811: [QA Follow-up] Add tests for Koha::Authority::Subfields/Tags
[koha.git] / t / db_dependent / Authority / Tags.t
blob4111f7ab8ae4c37701e3799c58efde1941a48dc1
1 #!/usr/bin/perl
3 # Copyright 2017 Koha Development team
5 # This file is part of Koha
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;
21 use Test::More tests => 1;
23 use t::lib::TestBuilder;
25 use Koha::Authority::Tags;
26 use Koha::Database;
28 my $schema = Koha::Database->new->schema;
29 $schema->storage->txn_begin;
31 subtest "Some supertrivial tests for Tag" => sub {
32 plan tests => 3;
33 my $authtype = t::lib::TestBuilder->new->build({
34 source => 'AuthType'
35 });
36 my $cnt = Koha::Authority::Tags->count;
37 my $rec = Koha::Authority::Tag->new({
38 authtypecode => $authtype->{authtypecode},
39 tagfield => '100',
40 })->store;
41 is( Koha::Authority::Tags->count, $cnt + 1, 'One record added' );
42 $rec->update({ liblibrarian => 'another intelligent idea' });
43 is( Koha::Authority::Tags->find( $authtype->{authtypecode}, '100' )->liblibrarian, 'another intelligent idea', 'Found record' );
44 $rec->delete;
45 is( Koha::Authority::Tags->count, $cnt, 'One record deleted' );
48 $schema->storage->txn_rollback;