From: mike Date: Fri, 7 Apr 2006 11:47:33 +0000 (+0000) Subject: Tweaks to facilitate better tests to come. X-Git-Tag: cpan_1_22~214 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=bc6121c9b3c3363d9ad1383bdbd745932bb6af65;p=ZOOM-Perl-moved-to-github.git Tweaks to facilitate better tests to come. --- 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.