test mfn
[webpac2] / t / 2-input-isi.t
index 5156143..6e0e1c4 100755 (executable)
@@ -3,7 +3,7 @@
 use strict;
 use blib;
 
-use Test::More tests => 9;
+use Test::More tests => 12;
 
 BEGIN {
 use_ok( 'WebPAC::Test' );
@@ -23,11 +23,13 @@ ok(my $db = $input->open(
        path => "$abs_path/data/recs.txt"
 ), "open");
 ok(my $size = $input->size, "size");
+cmp_ok( $size, '==', 2, 'size ok' );
 
 foreach my $mfn ( 1 ... $size ) {
        my $rec = $input->fetch;
        if ($mfn <= 10 || $mfn == 20) {
                ok($rec, "fetch $mfn");
+               cmp_ok($rec->{'000'}->[0], '==', $mfn, 'has mfn');
        } else {
                ok(! $rec, "empty $mfn");
        }