Omit Test::Title test, since this fails (astonishingly) on the
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Search / Main.pm
1 # $Id: Main.pm,v 1.7 2007-01-29 17:12:54 mike Exp $
2
3 package ZOOM::IRSpy::Test::Search::Main;
4
5 use 5.008;
6 use strict;
7 use warnings;
8
9 use ZOOM::IRSpy::Test;
10 our @ISA = qw(ZOOM::IRSpy::Test);
11
12 sub subtests { qw(Search::Bib1 Search::Dan1 Search::Boolean
13                   Search::Explain) }
14
15 sub start {
16     my $class = shift();
17     my($conn) = @_;
18
19     $conn->log("irspy_test", "Main::Search test no-opping");
20     # Do nothing -- this test is just a subtest container
21 }
22
23 1;