Run correct sequence of tests
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Main.pm
1 # $Id: Main.pm,v 1.12 2006-10-26 12:50:17 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) }
28 #sub subtests { qw(Ping Search::Explain Record::Fetch) } # Nice, small example of old Explain-failure
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;