diff options
author | Ricardo Signes <rjbs@cpan.org> | 2016-03-13 18:47:18 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2016-03-13 18:47:18 -0400 |
commit | 4263b1d0d6bf9bc4eae9ad9266d8c46f7640de6e (patch) | |
tree | 9b8613ed381d6457fe9e3ead465d7d5658a6362b /dist | |
parent | e7185dd068bad426ebbedf21a300ae33364fd3b8 (diff) | |
download | perl-4263b1d0d6bf9bc4eae9ad9266d8c46f7640de6e.tar.gz |
autouse: update tests to match new v1.11 CPAN release
Diffstat (limited to 'dist')
-rw-r--r-- | dist/autouse/lib/autouse.pm | 2 | ||||
-rw-r--r-- | dist/autouse/t/autouse.t | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/dist/autouse/lib/autouse.pm b/dist/autouse/lib/autouse.pm index 7061b7b29c..2dd8c1dbd7 100644 --- a/dist/autouse/lib/autouse.pm +++ b/dist/autouse/lib/autouse.pm @@ -3,7 +3,7 @@ package autouse; #use strict; # debugging only use 5.006; # use warnings -$autouse::VERSION = '1.10'; +$autouse::VERSION = '1.11'; $autouse::DEBUG ||= 0; diff --git a/dist/autouse/t/autouse.t b/dist/autouse/t/autouse.t index 74cad59194..a790403f0f 100644 --- a/dist/autouse/t/autouse.t +++ b/dist/autouse/t/autouse.t @@ -96,8 +96,7 @@ SKIP: { 'no redefinition warning when clobbering autouse stub via *a=\&b'; } SKIP: { - skip "Fails from 5.10 to 5.15.5 (perl bug)", 1 - if $] < 5.0150051 and $] > 5.0099; + skip "Fails in 5.15.5 and below (perl bug)", 1 if $] < 5.0150051; use Config; skip "no B", 1 unless $Config{extensions} =~ /\bB\b/; use warnings; local $^W = 1; no warnings 'once'; |