remove stale $Id$
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test.pm
1
2 package ZOOM::IRSpy::Test;
3
4 use 5.008;
5 use strict;
6 use warnings;
7
8 use Scalar::Util;
9
10 =head1 NAME
11
12 ZOOM::IRSpy::Test - base class for tests in IRSpy
13
14 =head1 SYNOPSIS
15
16  ## To follow
17
18 =head1 DESCRIPTION
19
20 I<## To follow>
21
22 =cut
23
24 sub subtests { () }
25
26 sub timeout { undef }
27
28 sub start {
29     my $class = shift();
30     my($conn) = @_;
31
32     die "can't start the base-class test";
33 }
34
35
36 =head1 SEE ALSO
37
38 ZOOM::IRSpy
39
40 =head1 AUTHOR
41
42 Mike Taylor, E<lt>mike@indexdata.comE<gt>
43
44 =head1 COPYRIGHT AND LICENSE
45
46 Copyright (C) 2006 by Index Data ApS.
47
48 This library is free software; you can redistribute it and/or modify
49 it under the same terms as Perl itself, either Perl version 5.8.7 or,
50 at your option, any later version of Perl 5 you may have available.
51
52 =cut
53
54 1;