8a2f54b19dc37f9690e5b93eb00a67e41a983e35
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Quick.pm
1 # $Id: Quick.pm,v 1.4 2007-04-18 15:25:07 mike Exp $
2
3 package ZOOM::IRSpy::Test::Quick;
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 sub subtests { qw(Ping Record::Fetch) }
13
14 sub timeout { 20 }
15
16 sub start {
17     my $class = shift();
18     my($conn) = @_;
19
20     $conn->log("irspy_test", "Quick test no-opping");
21 }
22
23 1;