42090d0eb344d756d0071af8a21d02e681b69780
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Record / Main.pm
1
2 package ZOOM::IRSpy::Test::Record::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(Record::Fetch Record::OPAC) }
27
28 sub start {
29     my $class = shift();
30     my($conn) = @_;
31
32     $conn->log("irspy_test", "Main test no-opping");
33     # Do nothing -- this test is just a subtest container
34 }
35
36
37 =head1 SEE ALSO
38
39 ZOOM::IRSpy
40
41 =head1 AUTHOR
42
43 Mike Taylor, E<lt>mike@indexdata.comE<gt>
44
45 =head1 COPYRIGHT AND LICENSE
46
47 Copyright (C) 2006 by Index Data ApS.
48
49 This library is free software; you can redistribute it and/or modify
50 it under the same terms as Perl itself, either Perl version 5.8.7 or,
51 at your option, any later version of Perl 5 you may have available.
52
53 =cut
54
55 1;