Skip to content

Commit

Permalink
make tests pass on 5.26, see http://www.cpantesters.org/cpan/report/c…
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed Apr 13, 2017
1 parent 5baea11 commit 48796be
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,3 +1,5 @@
2.47 2017-04-13 Make tests pass on perl 5.26

2.46 2016-09-21 Increase timeout for running Makefile.PL, to
cope with really slow machines with pitiful
I/O
Expand Down
1 change: 0 additions & 1 deletion MANIFEST
Expand Up @@ -10,7 +10,6 @@ t/01-dependencies.t
t/02-maxdepth.t
t/pod-coverage.t
t/pod.t
t/lib/chkenv.pm
TODO
t/cache/CPAN-FindDependencies-1.1/02packages.details.txt.gz
t/cache/CPAN-FindDependencies-1.1/CPAN-1.9205.yml
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/FindDependencies.pm
Expand Up @@ -17,7 +17,7 @@ require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(finddeps);

$VERSION = '2.46';
$VERSION = '2.47';

use constant DEFAULT02PACKAGES => 'http://www.cpan.org/modules/02packages.details.txt.gz';
use constant MAXINT => ~0;
Expand Down
13 changes: 11 additions & 2 deletions t/00-nometa-nowarnings-fatalerrors-nocaching.t
@@ -1,9 +1,18 @@
#!perl -w
# $Id: 00-nometa-nowarnings-fatalerrors-nocaching.t,v 1.1 2007/12/13 15:16:03 drhyde Exp $
use strict;

use Test::More;
require 't/lib/chkenv.pm';

use LWP::Simple;

unless(
head("http://search.cpan.org/~dcantrell/") &&
head("http://www.cpan.org/modules/02packages.details.txt.gz")
) {
plan skip_all => "Need web access to the CPAN";
exit;
}

plan tests => 5;

use_ok('CPAN::FindDependencies', 'finddeps');
Expand Down
16 changes: 0 additions & 16 deletions t/lib/chkenv.pm

This file was deleted.

0 comments on commit 48796be

Please sign in to comment.