Comment out test that all title-terms are in the general-term list,
authorMike Taylor <mike@miketaylor.org.uk>
Fri, 15 Oct 2010 12:15:47 +0000 (13:15 +0100)
committerMike Taylor <mike@miketaylor.org.uk>
Fri, 15 Oct 2010 12:15:47 +0000 (13:15 +0100)
an assumption that should never have been made.
Reduce test-count accordingly.

t/15-scan.t

index d17746c..fea22a0 100644 (file)
@@ -3,7 +3,7 @@
 
 use strict;
 use warnings;
-use Test::More tests => 87;
+use Test::More tests => 81;
 
 BEGIN { use_ok('Net::Z3950::ZOOM') };
 
@@ -52,8 +52,8 @@ foreach my $i (1 .. $n) {
        "got title term $i of $n: '$term' ($occ occurences)");
     ok($term ge $previous, "title term '$term' ge previous '$previous'");
     $previous = $term;
-    ok((grep { $term eq $_ } @terms),
-       "title term ($term) was in term list (@terms)");
+    # See comment in 25-scan.t
+    #ok((grep { $term eq $_ } @terms), "title term ($term) was in term list (@terms)");
 }
 
 Net::Z3950::ZOOM::scanset_destroy($ss);