Add comment
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Search / Main.pm
1
2 package ZOOM::IRSpy::Test::Search::Main;
3
4 use 5.008;
5 use strict;
6 use warnings;
7
8 use ZOOM::IRSpy::Test;
9 our @ISA = qw(ZOOM::IRSpy::Test);
10
11 sub subtests { qw(Search::Bib1 Search::Dan1 Search::Boolean
12                   Search::Explain Search::CQL Search::Bath) }
13 # Why no Search::DBDate or Search::Title?
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;