r59499 - in /branches/upstream/libtime-clock-perl/current: Changes META.yml lib/Time/Clock.pm t/parse.t

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Fri Jun 18 06:53:10 UTC 2010


Author: ansgar-guest
Date: Fri Jun 18 06:52:56 2010
New Revision: 59499

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=59499
Log:
[svn-upgrade] new version libtime-clock-perl (1.02)

Modified:
    branches/upstream/libtime-clock-perl/current/Changes
    branches/upstream/libtime-clock-perl/current/META.yml
    branches/upstream/libtime-clock-perl/current/lib/Time/Clock.pm
    branches/upstream/libtime-clock-perl/current/t/parse.t

Modified: branches/upstream/libtime-clock-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-clock-perl/current/Changes?rev=59499&op=diff
==============================================================================
--- branches/upstream/libtime-clock-perl/current/Changes (original)
+++ branches/upstream/libtime-clock-perl/current/Changes Fri Jun 18 06:52:56 2010
@@ -1,3 +1,7 @@
+1.02 (06.15.2010) - John Siracusa <siracusa at gmail.com>
+
+    * Fixed test failures on systems without Time::HiRes.
+
 1.01 (06.03.2010) - John Siracusa <siracusa at gmail.com>
 
     * Prevent parse failure on greater-than-nanoseconds precision.

Modified: branches/upstream/libtime-clock-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-clock-perl/current/META.yml?rev=59499&op=diff
==============================================================================
--- branches/upstream/libtime-clock-perl/current/META.yml (original)
+++ branches/upstream/libtime-clock-perl/current/META.yml Fri Jun 18 06:52:56 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Time-Clock
-version:            1.01
+version:            1.02
 abstract:           Twenty-four hour clock object with nanosecond precision.
 author:
     - John Siracusa <siracusa at gmail.com>

Modified: branches/upstream/libtime-clock-perl/current/lib/Time/Clock.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-clock-perl/current/lib/Time/Clock.pm?rev=59499&op=diff
==============================================================================
--- branches/upstream/libtime-clock-perl/current/lib/Time/Clock.pm (original)
+++ branches/upstream/libtime-clock-perl/current/lib/Time/Clock.pm Fri Jun 18 06:52:56 2010
@@ -4,7 +4,7 @@
 
 use Carp;
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 use overload
 (

Modified: branches/upstream/libtime-clock-perl/current/t/parse.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-clock-perl/current/t/parse.t?rev=59499&op=diff
==============================================================================
--- branches/upstream/libtime-clock-perl/current/t/parse.t (original)
+++ branches/upstream/libtime-clock-perl/current/t/parse.t Fri Jun 18 06:52:56 2010
@@ -69,8 +69,7 @@
 }
 else
 {
-  ok($t->parse('now'), 'parse now hires (skipped)');
-  ok($t->as_string =~ /^\d\d:\d\d:\d\d\.\d+$/, 'now hires (skipped)');
-  ok($t->parse('now'), 'parse now');
-  ok($t->as_string =~ /^\d\d:\d\d:\d\d$/, 'check now lowres');
+  ok($t->parse('now'), 'parse now hires (skipped) 1');
+  ok($t->as_string =~ /^\d\d:\d\d:\d\d$/, 'now hires (skipped) 2');
+  SKIP: { skip('parse now lowres', 2) }
 }




More information about the Pkg-perl-cvs-commits mailing list