test repeatable subfields
authorDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 23 Sep 2010 13:05:59 +0000 (13:05 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 23 Sep 2010 13:05:59 +0000 (13:05 +0000)
git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/MARC-Fast/trunk@40 49f9634a-d7ec-0310-8e6b-ec35c6cc8804

t/003_marc-repeatable.t [new file with mode: 0755]

diff --git a/t/003_marc-repeatable.t b/t/003_marc-repeatable.t
new file mode 100755 (executable)
index 0000000..981a551
--- /dev/null
@@ -0,0 +1,31 @@
+#!/usr/bin/perl -w
+
+use strict;
+use lib 'lib';
+
+use Test::More tests => 7;
+use Data::Dump qw/dump/;
+
+BEGIN {
+       use_ok( 'MARC::Fast' );
+       use_ok( 'Encode' );
+}
+
+my $debug = shift @ARGV;
+
+my $marc_file = 't/koha-105405.mrc';
+
+ok(my $marc = MARC::Fast->new(
+       marcdb => $marc_file,
+), "new");
+
+cmp_ok($marc->count, '==', 1, 'count' );
+
+ok(my $rec = $marc->fetch(1), "fetch 1");
+diag dump $rec if $debug;
+
+ok(my $hash = $marc->to_hash(1, include_subfields => 1), "to_hash 1 include_subfields");
+diag dump $hash if $debug;
+
+isa_ok( $hash->{653}->[0]->{'a'}, 'ARRAY' );
+