/[webpac2]/trunk/t/1-lookup.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

Diff of /trunk/t/1-lookup.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 6 by dpavlin, Sat Jul 16 14:44:38 2005 UTC revision 7 by dpavlin, Sat Jul 16 16:00:19 2005 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
4  use Test::More tests => 6;  use Test::More tests => 15;
5  use Test::Exception;  use Test::Exception;
6  use blib;  use blib;
7    
# Line 26  my $rec = { Line 26  my $rec = {
26          '900' => [ 'bar' ],          '900' => [ 'bar' ],
27  };  };
28    
29  ok($lookup->add( $rec ), "add");  diag "testing WebPAC::Lookup own methods";
30    
31  print Dumper($lookup);  ok($lookup->add( $rec ), "add");
32    
33  ok($lookup->{'lookup'}, "have lookup hash");  ok($lookup->{'lookup'}, "have lookup hash");
34    
# Line 40  my $lookup_res = { Line 40  my $lookup_res = {
40    
41  is_deeply($lookup_res, $lookup->{'lookup'}, "lookup data");  is_deeply($lookup_res, $lookup->{'lookup'}, "lookup data");
42    
43    foreach my $k (keys %{ $lookup_res }) {
44            ok(my @l = $lookup->lookup("lookup{$k}"), "lookup{$k}");
45    
46            cmp_ok($#l, '==', $#{$lookup_res->{$k}}, "result size");
47    
48            is_deeply($lookup_res->{$k}, \@l, "result values");
49    }
50    
51    diag "testing WebPAC::Lookup inherited methods";

Legend:
Removed from v.6  
changed lines
  Added in v.7

  ViewVC Help
Powered by ViewVC 1.1.26