View | Details | Raw Unified | Return to bug 18811
Collapse All | Expand All

(-)a/t/db_dependent/Authority/Subfields.t (+49 lines)
Line 0 Link Here
1
#!/usr/bin/perl
2
3
# Copyright 2017 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
use Test::More tests => 1;
22
23
use t::lib::TestBuilder;
24
25
use Koha::Authority::Subfields;
26
use Koha::Database;
27
28
my $schema = Koha::Database->new->schema;
29
$schema->storage->txn_begin;
30
31
subtest "Some supertrivial tests for Subfield" => sub {
32
    plan tests => 3;
33
    my $authtype = t::lib::TestBuilder->new->build({
34
        source => 'AuthType'
35
    });
36
    my $cnt =  Koha::Authority::Subfields->count;
37
    my $rec = Koha::Authority::Subfield->new({
38
        authtypecode => $authtype->{authtypecode},
39
        tagfield     => '100',
40
        tagsubfield  => 'a',
41
    })->store;
42
    is( Koha::Authority::Subfields->count, $cnt + 1, 'One record added' );
43
    $rec->update({ liblibrarian => 'intelligent text' });
44
    is( Koha::Authority::Subfields->find( $authtype->{authtypecode}, '100', 'a' )->liblibrarian, 'intelligent text', 'Found record' );
45
    $rec->delete;
46
    is( Koha::Authority::Subfields->count, $cnt, 'One record deleted' );
47
};
48
49
$schema->storage->txn_rollback;
(-)a/t/db_dependent/Authority/Tags.t (-1 / +48 lines)
Line 0 Link Here
0
- 
1
#!/usr/bin/perl
2
3
# Copyright 2017 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
use Test::More tests => 1;
22
23
use t::lib::TestBuilder;
24
25
use Koha::Authority::Tags;
26
use Koha::Database;
27
28
my $schema = Koha::Database->new->schema;
29
$schema->storage->txn_begin;
30
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' );
46
};
47
48
$schema->storage->txn_rollback;

Return to bug 18811