diff options
Diffstat (limited to 'cpan/Parse-CPAN-Meta')
-rw-r--r-- | cpan/Parse-CPAN-Meta/Changes | 6 | ||||
-rw-r--r-- | cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm | 2 | ||||
-rw-r--r-- | cpan/Parse-CPAN-Meta/t/01_compile.t | 3 | ||||
-rw-r--r-- | cpan/Parse-CPAN-Meta/t/02_api.t | 3 | ||||
-rw-r--r-- | cpan/Parse-CPAN-Meta/t/03_functions.t | 3 | ||||
-rw-r--r-- | cpan/Parse-CPAN-Meta/t/04_export.t | 3 | ||||
-rw-r--r-- | cpan/Parse-CPAN-Meta/t/05_errors.t | 3 |
7 files changed, 22 insertions, 1 deletions
diff --git a/cpan/Parse-CPAN-Meta/Changes b/cpan/Parse-CPAN-Meta/Changes index d9e3df948c..90f11dbfe2 100644 --- a/cpan/Parse-CPAN-Meta/Changes +++ b/cpan/Parse-CPAN-Meta/Changes @@ -1,5 +1,11 @@ Changes for Perl programming language extension Parse-CPAN-Meta +1.4404 Sun Apr 05 2012 + - Protected tests from user PERL_YAML/JSON_BACKEND + +1.4403 Sun Apr 01 2012 + - Bumped prereqs: JSON::PP to 2.27200 and CPAN::Meta::YAML to 0.008 + 1.4402 Tue Feb 07 2012 - Minor maintenance: standardized newlines to Unix style diff --git a/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm b/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm index 04ac3e16a1..4a7d097757 100644 --- a/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm +++ b/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm @@ -17,7 +17,7 @@ BEGIN { # Class structure require 5.004; require Exporter; - $Parse::CPAN::Meta::VERSION = '1.4402'; + $Parse::CPAN::Meta::VERSION = '1.4404'; @Parse::CPAN::Meta::ISA = qw{ Exporter }; @Parse::CPAN::Meta::EXPORT_OK = qw{ Load LoadFile }; } diff --git a/cpan/Parse-CPAN-Meta/t/01_compile.t b/cpan/Parse-CPAN-Meta/t/01_compile.t index 6bfc2c9628..4356305487 100644 --- a/cpan/Parse-CPAN-Meta/t/01_compile.t +++ b/cpan/Parse-CPAN-Meta/t/01_compile.t @@ -1,5 +1,8 @@ #!/usr/bin/perl +delete $ENV{PERL_YAML_BACKEND}; +delete $ENV{PERL_JSON_BACKEND}; + BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; diff --git a/cpan/Parse-CPAN-Meta/t/02_api.t b/cpan/Parse-CPAN-Meta/t/02_api.t index f81239426d..4ffb3d1f8b 100644 --- a/cpan/Parse-CPAN-Meta/t/02_api.t +++ b/cpan/Parse-CPAN-Meta/t/02_api.t @@ -1,5 +1,8 @@ #!/usr/bin/perl +delete $ENV{PERL_YAML_BACKEND}; +delete $ENV{PERL_JSON_BACKEND}; + # Testing of a known-bad file from an editor BEGIN { diff --git a/cpan/Parse-CPAN-Meta/t/03_functions.t b/cpan/Parse-CPAN-Meta/t/03_functions.t index 7a637c9383..a5deff9585 100644 --- a/cpan/Parse-CPAN-Meta/t/03_functions.t +++ b/cpan/Parse-CPAN-Meta/t/03_functions.t @@ -1,5 +1,8 @@ #!/usr/bin/perl +delete $ENV{PERL_YAML_BACKEND}; +delete $ENV{PERL_JSON_BACKEND}; + # Testing of basic document structures BEGIN { diff --git a/cpan/Parse-CPAN-Meta/t/04_export.t b/cpan/Parse-CPAN-Meta/t/04_export.t index f82cc91cf6..1a85d4e9aa 100644 --- a/cpan/Parse-CPAN-Meta/t/04_export.t +++ b/cpan/Parse-CPAN-Meta/t/04_export.t @@ -1,5 +1,8 @@ #!/usr/bin/perl +delete $ENV{PERL_YAML_BACKEND}; +delete $ENV{PERL_JSON_BACKEND}; + # Testing of basic document structures BEGIN { diff --git a/cpan/Parse-CPAN-Meta/t/05_errors.t b/cpan/Parse-CPAN-Meta/t/05_errors.t index 4882d290eb..9217500d69 100644 --- a/cpan/Parse-CPAN-Meta/t/05_errors.t +++ b/cpan/Parse-CPAN-Meta/t/05_errors.t @@ -1,5 +1,8 @@ #!/usr/bin/perl +delete $ENV{PERL_YAML_BACKEND}; +delete $ENV{PERL_JSON_BACKEND}; + # Testing of basic document structures BEGIN { |