/[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 477 by dpavlin, Sat May 13 12:07:56 2006 UTC revision 478 by dpavlin, Sat May 13 13:38:53 2006 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 => 17;  use Test::More tests => 18;
5  use Test::Exception;  use Test::Exception;
6  use blib;  use blib;
7    
# Line 11  BEGIN { Line 11  BEGIN {
11  use_ok( 'WebPAC::Lookup' );  use_ok( 'WebPAC::Lookup' );
12  }  }
13    
14    my $debug = shift @ARGV;
15    
16  throws_ok { new WebPAC::Lookup( no_log => 1 ) } qr/lookup_file/, "new without lookup_file";  throws_ok { new WebPAC::Lookup( no_log => 1 ) } qr/lookup_file/, "new without lookup_file";
17    
18  ok(my $lookup = new WebPAC::Lookup(  ok(my $lookup = new WebPAC::Lookup(
# Line 33  diag "testing WebPAC::Lookup own methods Line 35  diag "testing WebPAC::Lookup own methods
35    
36  ok($lookup->add( $rec ), "add");  ok($lookup->add( $rec ), "add");
37    
38  ok($lookup->{'_lookup_data'}, "{_lookup_data}");  ok(my $l1 = $lookup->{_lookup_data}, "{_lookup_data}");
39  ok($lookup->lookup_hash, "lookup_hash");  diag "lookup->{_lookup_data} = ",Dumper($lookup->{_lookup_data}) if ($debug);
40    ok(my $l2 = $lookup->lookup_hash, "lookup_hash");
41    diag "lookup->lookup_hash = ",Dumper($lookup->lookup_hash) if ($debug);
42    
43    is_deeply( $l1, $l2, 'lookups same');
44    
45  my $lookup_res = {  my $lookup_res = {
46          '800:foo' => [ 'bar' ],          '800:foo' => [ 'bar' ],

Legend:
Removed from v.477  
changed lines
  Added in v.478

  ViewVC Help
Powered by ViewVC 1.1.26