/[webpac2]/trunk/t/3-normalize.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/3-normalize.t

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

revision 912 by dpavlin, Tue Oct 30 17:40:13 2007 UTC revision 980 by dpavlin, Sat Nov 3 13:33:19 2007 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
   
 use Test::More tests => 341;  
 use Test::Exception;  
 use Cwd qw/abs_path/;  
4  use blib;  use blib;
5  use File::Slurp;  
6  use Getopt::Long;  use Test::More tests => 351;
7    
8  BEGIN {  BEGIN {
9            use_ok( 'WebPAC::Test' );
10          use_ok( 'WebPAC::Normalize' );          use_ok( 'WebPAC::Normalize' );
11  }  }
12    
 use Data::Dump qw/dump/;  
   
 my $debug = 0;  
 GetOptions(  
         "debug+", \$debug  
 );  
   
13  cmp_ok(_debug(1), '==', 1, '_debug level');  cmp_ok(_debug(1), '==', 1, '_debug level');
14  cmp_ok(_debug(0), '==', 0, '_debug level');  cmp_ok(_debug(0), '==', 0, '_debug level');
15    
# Line 28  if ($debug > 2) { Line 18  if ($debug > 2) {
18          diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );          diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );
19  }  }
20    
 ok(my $abs_path = abs_path($0), "abs_path");  
 $abs_path =~ s#/[^/]*$#/#;  
 diag "abs_path: $abs_path" if ($debug);  
   
21  my $rec1 = {  my $rec1 = {
22          '200' => [{          '200' => [{
23                  'a' => '200a',                  'a' => '200a',
# Line 437  sub test_s { Line 423  sub test_s {
423          test_check_ds('display');          test_check_ds('display');
424    
425          _clean_ds();          _clean_ds();
426            test_s(qq{ sorted('something', '42'); });
427            test_s(qq{ sorted('empty', ''); });
428            test_check_ds('sorted');
429    
430            _clean_ds();
431          my $n = read_file( "$abs_path/data/normalize.pl" );          my $n = read_file( "$abs_path/data/normalize.pl" );
432          $n .= "\n1;\n";          $n .= "\n1;\n";
433          #diag "normalize code:\n$n\n";          #diag "normalize code:\n$n\n";
# Line 858  sub test_s { Line 849  sub test_s {
849                          ["000", "0    5    A"]                          ["000", "0    5    A"]
850                  ]                  ]
851          );          );
852    
853            test_s(qq{ isbn_13( '1558607013', '978-1558607019' ) });
854            test_s(qq{ isbn_10( '1558607013', '978-1558607019' ) });
855    
856            is_deeply(
857                    [ isbn_13( '1558607013', '978-1558607019' ) ],
858                    [ '978-1-55860-701-9', '978-1-55860-701-9', ],
859            'isbn_13' );
860    
861            is_deeply(
862                    [ isbn_10( '1558607013', '978-1558607019' ) ],
863                    [ '1-55860-701-3', '1-55860-701-3' ],
864            'isbn_10' );
865    
866  }  }
867    

Legend:
Removed from v.912  
changed lines
  Added in v.980

  ViewVC Help
Powered by ViewVC 1.1.26