Bug 21846: Add Koha::Tags::Approval(s) and Koha::Tags::Index(es)
[koha.git] / t / db_dependent / Koha / Tags.t
bloba1a3939fd7887e8737200f4d3105aa6467789d9e
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Test::More tests => 1;
22 use t::lib::TestBuilder;
24 use Koha::Database;
25 use Koha::Tags;
27 my $schema = Koha::Database->schema;
28 my $builder = t::lib::TestBuilder->new;
30 subtest 'search() tests' => sub {
32 plan tests => 1;
34 $schema->storage->txn_begin;
36 my $current_count = Koha::Tags->search->count;
38 my $approval_1 = $builder->build_object({ class => 'Koha::Tags' });
39 my $approval_2 = $builder->build_object({ class => 'Koha::Tags' });
41 is( Koha::Tags->search->count, $current_count + 2, 'Tags count consistent' );
43 $schema->storage->txn_rollback;