dd9371d5535a6928f08ccfe7f18bd7bd38a36ce5
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Search / Main.pm
1 # $Id: Main.pm,v 1.3 2006-10-12 16:54:13 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::Title Search::Bib1) }
13
14 sub start {
15     my $class = shift();
16     my($conn) = @_;
17
18     $conn->log("irspy_test", "Main::Search test no-opping");
19     # Do nothing -- this test is just a subtest container
20 }
21
22 1;