Bug 17600: Standardize our EXPORT_OK
[srvgit] / t / Koha / Util / MARC.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19
20 use Test::More tests => 2;
21 use MARC::Record;
22
23 BEGIN { use_ok('Koha::Util::MARC'); }
24
25 subtest 'set_marc_field' => sub {
26     plan tests => 6;
27
28     my $record = MARC::Record->new();
29
30     Koha::Util::MARC::set_marc_field($record, '999$9', 'foobar');
31     my @fields = $record->field('999');
32     is(scalar @fields, 1, 'Created one field');
33     my @subfields = $fields[0]->subfield('9');
34     is(scalar @subfields, 1, 'Created one subfield');
35     is($subfields[0], 'foobar', 'Created subfield has correct value');
36
37     Koha::Util::MARC::set_marc_field($record, '999$9', 'foobaz');
38     @fields = $record->field('999');
39     is(scalar @fields, 1, 'No additional field created');
40     @subfields = $fields[0]->subfield('9');
41     is(scalar @subfields, 1, 'No additional subfield created');
42     is($subfields[0], 'foobaz', 'Subfield value has been changed');
43 };