From: Mike Taylor Date: Wed, 29 Nov 2006 18:16:21 +0000 (+0000) Subject: Remove isodate(), which is now in Utils.pm X-Git-Tag: CPAN-v1.02~54^2~696 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=e35998fe0888f71a9356ee04d050223f4e202634 Remove isodate(), which is now in Utils.pm Remove Exporter scaffolding. --- diff --git a/lib/ZOOM/IRSpy/Test.pm b/lib/ZOOM/IRSpy/Test.pm index 7cd0a18..0055e82 100644 --- a/lib/ZOOM/IRSpy/Test.pm +++ b/lib/ZOOM/IRSpy/Test.pm @@ -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