Remove isodate(), which is now in Utils.pm
authorMike Taylor <mike@indexdata.com>
Wed, 29 Nov 2006 18:16:21 +0000 (18:16 +0000)
committerMike Taylor <mike@indexdata.com>
Wed, 29 Nov 2006 18:16:21 +0000 (18:16 +0000)
Remove Exporter scaffolding.

lib/ZOOM/IRSpy/Test.pm

index 7cd0a18..0055e82 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.7 2006-11-29 18:16:21 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
@@ -33,17 +30,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