From fc9a5786ae912ed9d2dec74eb8033d248afaec97 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Thu, 7 Jun 2012 14:55:53 +0200 Subject: [PATCH] Prepare for CORE inclusion (BinGOs) --- Changelog | 3 ++- t/10_base.t | 13 ++++++++++--- t/20_plv.t | 13 +++++++++++-- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git a/Changelog b/Changelog index 1d713ee..9c0df83 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ -0.15 - 11 Jan 2012, H.Merijn Brand +0.15 - 07 Jun 2012, H.Merijn Brand * Update copyright to 2012 + * Prepare for CORE inclusion (BinGOs) 0.14 - 07 Sep 2011, H.Merijn Brand * Upped copyright to 2011 diff --git a/t/10_base.t b/t/10_base.t index b633c73..4f24d73 100755 --- a/t/10_base.t +++ b/t/10_base.t @@ -3,10 +3,17 @@ use strict; use warnings; -use Test::More tests => 8; -use Test::NoWarnings; - BEGIN { + use Test::More; + my $tests = 7; + unless ($ENV{PERL_CORE}) { + require Test::NoWarnings; + Test::NoWarnings->import (); + $tests++; + } + + plan tests => $tests; + use_ok ("Config::Perl::V"); } diff --git a/t/20_plv.t b/t/20_plv.t index 1adf3ec..a739490 100644 --- a/t/20_plv.t +++ b/t/20_plv.t @@ -3,8 +3,17 @@ use strict; use warnings; -use Test::More tests => 9; -use Test::NoWarnings; +BEGIN { + use Test::More; + my $tests = 8; + unless ($ENV{PERL_CORE}) { + require Test::NoWarnings; + Test::NoWarnings->import (); + $tests++; + } + + plan tests => $tests; + } use Config::Perl::V; -- 2.11.4.GIT