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