X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTest%2FSearch%2FMain.pm;h=2e337c7a1c8766ddb6908f2cb7197549ffecdcfe;hp=9cf3470ebbf10a1a21f3b516ab4068186f99b63d;hb=38bb5c4256a5dbcde5bba5d7ef46f92d515bb839;hpb=2ee6d6d4cc1eca7c0a890e26d50fd64328febcff diff --git a/lib/ZOOM/IRSpy/Test/Search/Main.pm b/lib/ZOOM/IRSpy/Test/Search/Main.pm index 9cf3470..2e337c7 100644 --- a/lib/ZOOM/IRSpy/Test/Search/Main.pm +++ b/lib/ZOOM/IRSpy/Test/Search/Main.pm @@ -1,4 +1,3 @@ -# $Id: Main.pm,v 1.1 2006-10-02 13:08:42 sondberg Exp $ package ZOOM::IRSpy::Test::Search::Main; @@ -7,47 +6,18 @@ use strict; use warnings; use ZOOM::IRSpy::Test; -our @ISA; -@ISA = qw(ZOOM::IRSpy::Test); +our @ISA = qw(ZOOM::IRSpy::Test); +sub subtests { qw(Search::Bib1 Search::Dan1 Search::Boolean + Search::Explain Search::CQL Search::Bath) } +# Why no Search::DBDate or Search::Title? -=head1 NAME +sub start { + my $class = shift(); + my($conn) = @_; -ZOOM::IRSpy::Test::Main::Search::Main - a single test for IRSpy - -=head1 SYNOPSIS - - ## To follow - -=head1 DESCRIPTION - -I<## To follow> - -=cut - -sub run { - my $this = shift(); - - return $this->run_tests(qw(Search::Bib1)); + $conn->log("irspy_test", "Main::Search test no-opping"); + # Do nothing -- this test is just a subtest container } - -=head1 SEE ALSO - -ZOOM::IRSpy - -=head1 AUTHOR - -Mike Taylor, Emike@indexdata.comE - -=head1 COPYRIGHT AND LICENSE - -Copyright (C) 2006 by Index Data ApS. - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself, either Perl version 5.8.7 or, -at your option, any later version of Perl 5 you may have available. - -=cut - 1;