summaryrefslogtreecommitdiff
path: root/cpan/parent
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-09-01 15:38:07 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-09-01 15:46:21 +0100
commita8f52b62a9a286742b10878b4bb35fea1f0a012d (patch)
tree5adf4210e1b15465718981edaf05a5125f94885f /cpan/parent
parent202c41cbde95a3d4b1f80be3633fdee05b08fded (diff)
downloadperl-a8f52b62a9a286742b10878b4bb35fea1f0a012d.tar.gz
Update parent to CPAN version 0.227
[DELTA] 0.227 20130991 . Fix RT #88320, restore tests passing for 5.17.5+ Thanks to Zefram for the report and contributing the fix
Diffstat (limited to 'cpan/parent')
-rw-r--r--cpan/parent/lib/parent.pm2
-rw-r--r--cpan/parent/t/parent.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpan/parent/lib/parent.pm b/cpan/parent/lib/parent.pm
index 32f0d6cafc..141b3bb92b 100644
--- a/cpan/parent/lib/parent.pm
+++ b/cpan/parent/lib/parent.pm
@@ -1,7 +1,7 @@
package parent;
use strict;
use vars qw($VERSION);
-$VERSION = '0.226';
+$VERSION = '0.227';
sub import {
my $class = shift;
diff --git a/cpan/parent/t/parent.t b/cpan/parent/t/parent.t
index fd1722f668..8b79862fa4 100644
--- a/cpan/parent/t/parent.t
+++ b/cpan/parent/t/parent.t
@@ -58,7 +58,7 @@ is( $Eval2::VERSION, '1.02' );
my $expected= q{/^Can't locate reallyReAlLyNotexists.pm in \@INC \(\@INC contains:/};
$expected= q{/^Can't locate reallyReAlLyNotexists.pm in \@INC \(you may need to install the reallyReAlLyNotexists module\) \(\@INC contains:/}
- if 5.018 <= $];
+ if 5.017005 <= $];
eval q{use parent 'reallyReAlLyNotexists'};
like( $@, $expected, 'baseclass that does not exist');