/[MARC-Fast]/trunk/t/001_marc.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/t/001_marc.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6 - (show annotations)
Sun Dec 18 23:12:26 2005 UTC (18 years, 4 months ago) by dpavlin
File MIME type: application/x-troff
File size: 943 byte(s)
added to_hash, small fix to test, better output in dump_fastmarc.pl [0.02]

1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Test::More tests => 20;
7 use Test::Exception;
8 use Data::Dumper;
9
10 BEGIN { use_ok( 'MARC::Fast' ); }
11
12 my $marc;
13 my %param;
14
15 throws_ok { $marc = MARC::Fast->new(%param); } qr/marcdb/, "marcdb parametar";
16
17 $param{marcdb} = '/foo/bar/file';
18
19 throws_ok { $marc = MARC::Fast->new(%param); } qr/foo.bar/, "marcdb exist";
20
21 $param{marcdb} = 'data/unimarc.iso';
22
23 SKIP: {
24 skip "no $param{marcdb} test file ", 17 unless (-e $param{marcdb});
25
26 ok($marc = MARC::Fast->new(%param), "new");
27
28 isa_ok ($marc, 'MARC::Fast');
29
30 cmp_ok($marc->count, '==', scalar @{$marc->{leaders}}, "count == leaders");
31 cmp_ok($marc->count, '==', scalar @{$marc->{fh_offset}}, "count == fh_offset");
32
33 ok(! $marc->fetch(0), "fetch 0");
34 ok($marc->fetch($marc->count), "fetch max:".$marc->count);
35 ok(! $marc->fetch($marc->count + 1), "fetch max+1:".($marc->count+1));
36
37 foreach (1 .. 10) {
38 ok($marc->fetch($_), "fetch $_");
39 }
40 }

Properties

Name Value
svn:executable

  ViewVC Help
Powered by ViewVC 1.1.26