/[webpac2]/trunk/t/2-input-ovid.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

Annotation of /trunk/t/2-input-ovid.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1126 - (hide annotations)
Mon Apr 20 13:44:40 2009 UTC (15 years ago) by dpavlin
File MIME type: application/x-troff
File size: 681 byte(s)
 r1760@llin:  dpavlin | 2009-04-20 15:44:39 +0200
 tweak implementation to actually work

1 dpavlin 1124 #!/usr/bin/perl -w
2    
3     use strict;
4     use blib;
5    
6 dpavlin 1126 use Test::More tests => 48;
7 dpavlin 1124
8     BEGIN {
9     use_ok( 'WebPAC::Test' );
10     use_ok( 'WebPAC::Input' );
11     }
12    
13     my $module = 'WebPAC::Input::Ovid';
14     diag "testing with $module";
15    
16     ok(my $input = new WebPAC::Input(
17     module => $module,
18     no_progress_bar => 1,
19     %LOG
20     ), "new");
21    
22     ok(my $db = $input->open(
23     path => "$abs_path/data/ovid-cites.txt"
24     ), "open");
25     ok(my $size = $input->size, "size");
26 dpavlin 1126 cmp_ok( $size, '==', 14, 'size ok' );
27 dpavlin 1124
28     foreach my $mfn ( 1 ... $size ) {
29     my $rec = $input->fetch;
30     ok($rec, "fetch $mfn");
31     cmp_ok($rec->{'000'}->[0], '==', $mfn, 'has mfn');
32     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
33     diag "rec: ", dump($rec), "\n" if $debug;
34     }
35    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26