24f37f29c0bdf02dd1faf5f25aba73847af0ecc6
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Quick.pm
1
2 package ZOOM::IRSpy::Test::Quick;
3
4 use 5.008;
5 use strict;
6 use warnings;
7
8 use ZOOM::IRSpy::Test;
9 our @ISA = qw(ZOOM::IRSpy::Test);
10
11 sub subtests { qw(Ping Record::OPAC) }
12
13 sub timeout { 20 }
14
15 sub start {
16     my $class = shift();
17     my($conn) = @_;
18
19     $conn->log("irspy_test", "Quick test no-opping");
20 }
21
22 1;