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