[Bps-public-commit] Path-Dispatcher branch, master, updated. 79a4dd42767b8ea3f5422645badf380affeb8755

Shawn Moore sartak at bestpractical.com
Sun Oct 24 02:14:50 EDT 2010


The branch, master has been updated
       via  79a4dd42767b8ea3f5422645badf380affeb8755 (commit)
      from  2fb4b4c70c99c36f521968672733906b17770e79 (commit)

Summary of changes:
 Changes                |    2 +-
 t/026-named-captures.t |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

- Log -----------------------------------------------------------------
commit 79a4dd42767b8ea3f5422645badf380affeb8755
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Sun Oct 24 15:14:45 2010 +0900

    According to CPAN Testers you need 5.10.1 :/

diff --git a/Changes b/Changes
index d0fe318..922c32c 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,7 @@
 Revision history for Path-Dispatcher
 
 1.01 Sun Oct 24 2010
-        Skip t/026-named-captures.t if you don't have 5.10
+        Skip t/026-named-captures.t if you don't have 5.10.1
 
         Give matches a ->parent for inspecting an Under prefix rule's
             captures etc
diff --git a/t/026-named-captures.t b/t/026-named-captures.t
index d5eded0..c30b836 100644
--- a/t/026-named-captures.t
+++ b/t/026-named-captures.t
@@ -3,8 +3,8 @@ use strict;
 use warnings;
 use Test::More;
 BEGIN {
-    if ($] <= 5.010) {
-        plan skip_all => 'This test requires Perl 5.10';
+    if ($] <= 5.010001) {
+        plan skip_all => 'This test requires Perl 5.10.1';
     }
 }
 use Path::Dispatcher;

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list