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