From bc6121c9b3c3363d9ad1383bdbd745932bb6af65 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 7 Apr 2006 11:47:33 +0000 Subject: [PATCH] Tweaks to facilitate better tests to come. --- t/19-events.t | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/t/19-events.t b/t/19-events.t index 690fcff..45c7f01 100644 --- a/t/19-events.t +++ b/t/19-events.t @@ -1,4 +1,4 @@ -# $Id: 19-events.t,v 1.1 2006-04-06 12:50:19 mike Exp $ +# $Id: 19-events.t,v 1.2 2006-04-07 11:47:33 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' @@ -11,12 +11,15 @@ BEGIN { use_ok('Net::Z3950::ZOOM') }; my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy"); +my $options = Net::Z3950::ZOOM::options_create(); +Net::Z3950::ZOOM::options_set($options, async => 1); + my $host = "indexdata.com/gils"; -my $conn = Net::Z3950::ZOOM::connection_new($host, 0); +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); ok($errcode == 0, "connection to '$host'"); -#my $options = Net::Z3950::ZOOM::options_create(); my $val = Net::Z3950::ZOOM::event(1); ok($val == -1, "non-reference argument rejected"); @@ -30,6 +33,6 @@ $val = Net::Z3950::ZOOM::event([1..32767]); ok($val == -4, "huge array reference argument rejected"); $val = Net::Z3950::ZOOM::event([$conn]); -ok($val == 0, "call with single connection does nothing"); +ok($val == 1, "call with an good connection returns its index"); ### Now we need to actually do something. -- 1.7.10.4