From 465793dd5a3d699cc9261520cea9d78f9705468c Mon Sep 17 00:00:00 2001 From: mike Date: Wed, 12 Oct 2005 16:13:34 +0000 Subject: [PATCH] Add diag_str() test. --- t/1-Net-Z3950-ZOOM.t | 7 +++++-- t/2-ZOOM.t | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/t/1-Net-Z3950-ZOOM.t b/t/1-Net-Z3950-ZOOM.t index a35894e..facf828 100644 --- a/t/1-Net-Z3950-ZOOM.t +++ b/t/1-Net-Z3950-ZOOM.t @@ -1,4 +1,4 @@ -# $Id: 1-Net-Z3950-ZOOM.t,v 1.4 2005-10-12 14:36:17 mike Exp $ +# $Id: 1-Net-Z3950-ZOOM.t,v 1.5 2005-10-12 16:13:34 mike Exp $ # Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl Net-Z3950-ZOOM.t' @@ -8,7 +8,7 @@ # change 'tests => 1' to 'tests => last_test_to_print'; use strict; -use Test::More tests => 11; +use Test::More tests => 12; BEGIN { use_ok('Net::Z3950::ZOOM') }; ######################### @@ -16,6 +16,9 @@ BEGIN { use_ok('Net::Z3950::ZOOM') }; # Insert your test code below, the Test::More module is use()ed here so read # its man page ( perldoc Test::More ) for help writing this test script. +my $msg = Net::Z3950::ZOOM::diag_str(Net::Z3950::ZOOM::ERROR_INVALID_QUERY); +ok($msg eq "Invalid query", "diagnostic string lookup works"); + my($errcode, $errmsg, $addinfo) = (undef, "dummy", "dummy"); my $host = "no.such.host"; diff --git a/t/2-ZOOM.t b/t/2-ZOOM.t index 98d4ded..2caf9e6 100644 --- a/t/2-ZOOM.t +++ b/t/2-ZOOM.t @@ -1,4 +1,4 @@ -# $Id: 2-ZOOM.t,v 1.3 2005-10-12 14:31:53 mike Exp $ +# $Id: 2-ZOOM.t,v 1.4 2005-10-12 16:13:38 mike Exp $ # Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl ZOOM.t' @@ -8,7 +8,7 @@ # change 'tests => 1' to 'tests => last_test_to_print'; use strict; -use Test::More tests => 11; +use Test::More tests => 12; BEGIN { use_ok('ZOOM') }; ######################### @@ -16,6 +16,9 @@ BEGIN { use_ok('ZOOM') }; # Insert your test code below, the Test::More module is use()ed here so read # its man page ( perldoc Test::More ) for help writing this test script. +my $msg = ZOOM::diag_str(ZOOM::Error::INVALID_QUERY); +ok($msg eq "Invalid query", "diagnostic string lookup works"); + my $host = "no.such.host"; my $conn; eval { $conn = new ZOOM::Connection($host, 0) }; -- 1.7.10.4