Skip to content

Commit

Permalink
require newer Test::More
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Jul 3, 2014
1 parent 36eab9a commit 446774c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl module File::pushd

{{$NEXT}}

[FIXED]

- Require a newer version of Test::More

1.007 2014-05-30 23:59:02-04:00 America/New_York

[FIXED]
Expand Down
3 changes: 2 additions & 1 deletion cpanfile
Expand Up @@ -14,7 +14,7 @@ on 'test' => sub {
requires "File::Basename" => "0";
requires "File::Spec::Functions" => "0";
requires "List::Util" => "0";
requires "Test::More" => "0";
requires "Test::More" => "0.96";
requires "version" => "0";
};

Expand All @@ -39,4 +39,5 @@ on 'develop' => sub {
requires "Test::More" => "0";
requires "Test::Pod" => "1.41";
requires "Test::Pod::Coverage" => "1.08";
requires "Test::Spelling" => "0.12";
};
3 changes: 2 additions & 1 deletion t/File_pushd.t
Expand Up @@ -2,7 +2,7 @@
use strict;
#use warnings;

use Test::More tests => 39;
use Test::More 0.95;
use File::Path 'rmtree';
use File::Basename 'dirname';
use Cwd 'abs_path';
Expand Down Expand Up @@ -225,3 +225,4 @@ is( absdir(), $original_dir, "revert directory when variable goes out of scope"

ok( -e $expected_dir, "original directory not removed" );

done_testing;
2 changes: 1 addition & 1 deletion t/exception.t
@@ -1,6 +1,6 @@
use strict;
use warnings;
use Test::More;
use Test::More 0.96;
use File::pushd;

eval {
Expand Down

0 comments on commit 446774c

Please sign in to comment.