-# $Id: 1-Net-Z3950-ZOOM.t,v 1.13 2005-11-16 16:24:42 mike Exp $
+# $Id: 1-Net-Z3950-ZOOM.t,v 1.14 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 1-Net-Z3950-ZOOM.t'
ok($errcode == Net::Z3950::ZOOM::ERROR_CONNECT && $addinfo eq $host,
"connection to non-existent host '$host' fails");
-$host = "indexdata.com/gils";
+$host = "bagel.indexdata.com/gils";
$conn = Net::Z3950::ZOOM::connection_new($host, 0);
$errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
ok($errcode == 0, "connection to '$host'");
-# $Id: 12-query.t,v 1.7 2006-06-15 15:43:19 mike Exp $
+# $Id: 12-query.t,v 1.8 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 12-query.t'
# no other uses of query objects -- but we need to establish a
# connection for it to work on first.
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn = Net::Z3950::ZOOM::connection_new($host, 0);
my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy");
$errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
-# $Id: 13-resultset.t,v 1.6 2005-11-07 15:48:21 mike Exp $
+# $Id: 13-resultset.t,v 1.7 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 13-resultset.t'
my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy");
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn = Net::Z3950::ZOOM::connection_new($host, 0);
$errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
ok($errcode == 0, "connection to '$host'");
-# $Id: 14-sorting.t,v 1.6 2005-11-18 17:53:53 mike Exp $
+# $Id: 14-sorting.t,v 1.7 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 14-sorting.t'
my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy");
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn = Net::Z3950::ZOOM::connection_new($host, 0);
$errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
ok($errcode == 0, "connection to '$host'");
-# $Id: 15-scan.t,v 1.11 2006-06-15 15:45:48 mike Exp $
+# $Id: 15-scan.t,v 1.12 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 15-scan.t'
my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy");
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn = Net::Z3950::ZOOM::connection_new($host, 0);
$errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
ok($errcode == 0, "connection to '$host'");
-# $Id: 19-events.t,v 1.5 2006-04-12 12:07:32 mike Exp $
+# $Id: 19-events.t,v 1.6 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 19-events.t'
my $options = Net::Z3950::ZOOM::options_create();
Net::Z3950::ZOOM::options_set($options, async => 1);
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn = Net::Z3950::ZOOM::connection_create($options);
Net::Z3950::ZOOM::connection_connect($conn, $host, 0);
$errcode = Net::Z3950::ZOOM::connection_error($conn, $errmsg, $addinfo);
-# $Id: 2-ZOOM.t,v 1.10 2006-10-10 16:50:38 mike Exp $
+# $Id: 2-ZOOM.t,v 1.11 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 2-ZOOM.t'
$@->code() == ZOOM::Error::CONNECT && $@->addinfo() eq $host,
"connection to non-existent host '$host' fails");
-$host = "indexdata.com/gils";
+$host = "bagel.indexdata.com/gils";
eval { $conn = new ZOOM::Connection($host, 0) };
ok(!$@, "connection to '$host'");
-# $Id: 22-query.t,v 1.9 2006-10-10 16:58:14 mike Exp $
+# $Id: 22-query.t,v 1.10 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 22-query.t'
# no other uses of query objects -- but we need to establish a
# connection for it to work on first.
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn;
eval { $conn = new ZOOM::Connection($host, 0,
preferredRecordSyntax => "usmarc") };
-# $Id: 23-resultset.t,v 1.3 2005-11-07 15:48:25 mike Exp $
+# $Id: 23-resultset.t,v 1.4 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 23-resultset.t'
use Test::More tests => 23;
BEGIN { use_ok('ZOOM') };
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn;
eval { $conn = new ZOOM::Connection($host, 0) };
ok(!$@, "connection to '$host'");
-# $Id: 24-sorting.t,v 1.5 2005-11-18 17:53:16 mike Exp $
+# $Id: 24-sorting.t,v 1.6 2006-11-02 17:04:36 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'
BEGIN { use_ok('ZOOM') };
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn;
eval { $conn = new ZOOM::Connection($host, 0) };
ok(!$@, "connection to '$host'");
-# $Id: 25-scan.t,v 1.8 2006-06-13 16:44:21 mike Exp $
+# $Id: 25-scan.t,v 1.9 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 25-scan.t'
BEGIN { use_ok('ZOOM') };
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn;
eval { $conn = new ZOOM::Connection($host, 0) };
ok(!$@, "connection to '$host'");
-# $Id: 29-events.t,v 1.2 2006-10-10 16:51:02 mike Exp $
+# $Id: 29-events.t,v 1.3 2006-11-02 17:04:36 mike Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 19-events.t'
my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy");
-my $host = "indexdata.com/gils";
+my $host = "bagel.indexdata.com/gils";
my $conn = create ZOOM::Connection(async => 1);
eval { $conn->connect($host) };
ok(!$@, "connection to '$host'");