6814217ec0ce703bd0f0b84f63c97eeabc2c2587
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Main.pm
1 # $Id: Main.pm,v 1.14 2007-04-18 15:24:55 mike Exp $
2
3 package ZOOM::IRSpy::Test::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
13 =head1 NAME
14
15 ZOOM::IRSpy::Test::Main - a single test for IRSpy
16
17 =head1 SYNOPSIS
18
19  ## To follow
20
21 =head1 DESCRIPTION
22
23 I<## To follow>
24
25 =cut
26
27 sub subtests { qw(Ping Search::Main Record::Main ResultSet::Main) }
28
29 sub timeout { 90 }
30
31 sub start {
32     my $class = shift();
33     my($conn) = @_;
34
35     $conn->log("irspy_test", "Main test no-opping");
36     # Do nothing -- this test is just a subtest container
37 }
38
39
40 =head1 SEE ALSO
41
42 ZOOM::IRSpy
43
44 =head1 AUTHOR
45
46 Mike Taylor, E<lt>mike@indexdata.comE<gt>
47
48 =head1 COPYRIGHT AND LICENSE
49
50 Copyright (C) 2006 by Index Data ApS.
51
52 This library is free software; you can redistribute it and/or modify
53 it under the same terms as Perl itself, either Perl version 5.8.7 or,
54 at your option, any later version of Perl 5 you may have available.
55
56 =cut
57
58 1;