migration_tools.name_parse_out_first_middle_last_comma_suffix
[migration-tools.git] / Equinox-Migration / t / 05-Utils.t
1 # Copyright 2014, Equinox Software, Inc.
2 #
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16
17 use strict;
18 use warnings;
19
20 use Test::More tests => 3;
21 use Equinox::Migration::Utils qw/normalize_oclc_number/;
22
23 is(normalize_oclc_number('ocm38548133'),        '(OCoLC)38548133', 'prefixed with "ocm"');
24 is(normalize_oclc_number('   ocm38548133    '), '(OCoLC)38548133', 'ignore leading/trailing whitespace');
25 is(normalize_oclc_number('(OCoLC)ocm00123456'), '(OCoLC)123456',   'ignore leading zeroes in number');