Move zoom-delete-records entry to new [IN PROGRESS] area.
[ZOOM-Perl-moved-to-github.git] / t / 24-sorting.t
index 687ec65..e7f1b77 100644 (file)
@@ -1,16 +1,14 @@
-# $Id: 24-sorting.t,v 1.2 2005-11-07 16:30:50 mike Exp $
-
 # Before `make install' is performed this script should be runnable with
 # `make test'. After `make install' it should work as `perl 24-sorting.t'
 
 use strict;
 use warnings;
-use Test::More tests => 27;
+use Test::More tests => 29;
 use MARC::Record;
 
 BEGIN { use_ok('ZOOM') };
 
-my $host = "indexdata.com/gils";
+my $host = "z3950.indexdata.com/gils";
 my $conn;
 eval { $conn = new ZOOM::Connection($host, 0) };
 ok(!$@, "connection to '$host'");
@@ -38,8 +36,10 @@ foreach my $i (1 .. $n) {
 }
 
 # Now reverse the order of sorting
-$rs->sort("dummy", "1=4 >i");
-### There's no way to check for success, as this is a void function
+my $status = $rs->sort("yaz", "1=4>i");
+ok($status < 0, "malformed sort criterion rejected");
+$status = $rs->sort("yaz", "1=4 >i");
+ok($status == 0, "sort criterion accepted");
 
 $previous = "z";               # Sorts after all legitimate titles
 foreach my $i (1 .. $n) {