import Scalar::Util to test weaken references of perl objects
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test.pm
1 # $Id: Test.pm,v 1.8 2007-04-18 15:24:45 mike Exp $
2
3 package ZOOM::IRSpy::Test;
4
5 use 5.008;
6 use strict;
7 use warnings;
8
9 use Scalar::Util;
10
11 =head1 NAME
12
13 ZOOM::IRSpy::Test - base class for tests in IRSpy
14
15 =head1 SYNOPSIS
16
17  ## To follow
18
19 =head1 DESCRIPTION
20
21 I<## To follow>
22
23 =cut
24
25 sub subtests { () }
26
27 sub timeout { undef }
28
29 sub start {
30     my $class = shift();
31     my($conn) = @_;
32
33     die "can't start the base-class test";
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;