Add timeout()
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test.pm
index 7cd0a18..e73061a 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Test.pm,v 1.6 2006-10-13 10:08:57 sondberg Exp $
+# $Id: Test.pm,v 1.8 2007-04-18 15:24:45 mike Exp $
 
 package ZOOM::IRSpy::Test;
 
@@ -6,9 +6,6 @@ use 5.008;
 use strict;
 use warnings;
 
-use Exporter 'import';
-our @EXPORT = qw(isodate);
-
 =head1 NAME
 
 ZOOM::IRSpy::Test - base class for tests in IRSpy
@@ -25,6 +22,8 @@ I<## To follow>
 
 sub subtests { () }
 
+sub timeout { undef }
+
 sub start {
     my $class = shift();
     my($conn) = @_;
@@ -33,17 +32,6 @@ sub start {
 }
 
 
-
-# Utility function, really nothing to do with IRSpy
-sub isodate {
-    my($time) = @_;
-
-    my($sec, $min, $hour, $mday, $mon, $year) = localtime($time);
-    return sprintf("%04d-%02d-%02dT%02d:%02d:%02d",
-                  $year+1900, $mon+1, $mday, $hour, $min, $sec);
-}
-
-
 =head1 SEE ALSO
 
 ZOOM::IRSpy