X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=blobdiff_plain;f=Equinox-Migration%2Ft%2F05-Utils.t;fp=Equinox-Migration%2Ft%2F05-Utils.t;h=1198c622ab7a779c39caa1482ff9c6640883c1e9;hp=0000000000000000000000000000000000000000;hb=16c6b51d01c51074067332264b05f40124f7c8bd;hpb=2903ae22834607d6ce9374f3557e72a01b9eefab diff --git a/Equinox-Migration/t/05-Utils.t b/Equinox-Migration/t/05-Utils.t new file mode 100644 index 0000000..1198c62 --- /dev/null +++ b/Equinox-Migration/t/05-Utils.t @@ -0,0 +1,25 @@ +# Copyright 2014, Equinox Software, Inc. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +use strict; +use warnings; + +use Test::More tests => 3; +use Equinox::Migration::Utils qw/normalize_oclc_number/; + +is(normalize_oclc_number('ocm38548133'), '(OCoLC)38548133', 'prefixed with "ocm"'); +is(normalize_oclc_number(' ocm38548133 '), '(OCoLC)38548133', 'ignore leading/trailing whitespace'); +is(normalize_oclc_number('(OCoLC)ocm00123456'), '(OCoLC)123456', 'ignore leading zeroes in number');