Skip to content

Commit

Permalink
Disabled use of Test::Kit
Browse files Browse the repository at this point in the history
  • Loading branch information
robrwo committed Oct 9, 2014
1 parent 5ece183 commit 8619eeb
Show file tree
Hide file tree
Showing 8 changed files with 90 additions and 8 deletions.
4 changes: 4 additions & 0 deletions Changes
Expand Up @@ -4,6 +4,10 @@ v1.0.1_05
[Documentation]
- Corrected typos in POD.

[Bug Fixes]
- Disabled use of Test::Kit, since it seems to have problems with
Test::Builder 1.301001_056.

v1.0.1_04 2014-10-08 23:27 BST
[Documentation]
- Changed abstract to make the module's purpose more obvious.
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -25,7 +25,7 @@ build_requires(
'IO::String' => 0,
'Test::Deep' => 0,
'Test::Exception' => 0,
'Test::Kit' => '2.10',
# 'Test::Kit' => '2.10', # Buggy with Test::Builder 1.301001_056
'Test::More' => 0,
'lib' => 0,
);
Expand Down
12 changes: 10 additions & 2 deletions README.pod
Expand Up @@ -90,8 +90,6 @@ This distribution requires the following modules:

=item * L<Test::Exception>

=item * L<Test::Kit> (version 2.10)

=item * L<Try::Tiny>

=item * L<Type::Tiny>
Expand All @@ -116,6 +114,16 @@ This distribution recommends the following modules:

=head1 RECENT CHANGES

=head2 Bug Fixes

=over 4

=item *

Disabled use of Test::Kit, since it seems to have problems with Test::Builder 1.301001_056.

=back

=head2 Documentation

=over 4
Expand Down
16 changes: 15 additions & 1 deletion t/10-pod-readme-filter.t
@@ -1,5 +1,19 @@
use strict;
use warnings;

use Test::More;
use Test::Deep;
use Test::Exception;

use Cwd;
use File::Compare qw/ compare_text /;
use File::Temp qw/ tempfile /;
use Path::Tiny qw/ path /;

use lib 't/lib';
use Pod::Readme::Test::Kit;
use Pod::Readme::Test;

# use Pod::Readme::Test::Kit;

my $class = 'Pod::Readme::Filter';
use_ok $class;
Expand Down
16 changes: 15 additions & 1 deletion t/20-pod-readme.t
@@ -1,5 +1,19 @@
use strict;
use warnings;

use Test::More;
use Test::Deep;
use Test::Exception;

use Cwd;
use File::Compare qw/ compare_text /;
use File::Temp qw/ tempfile /;
use Path::Tiny qw/ path /;

use lib 't/lib';
use Pod::Readme::Test::Kit;
use Pod::Readme::Test;

# use Pod::Readme::Test::Kit;

my $class = 'Pod::Readme';
use_ok $class;
Expand Down
16 changes: 15 additions & 1 deletion t/plugins/changes.t
@@ -1,5 +1,19 @@
use strict;
use warnings;

use Test::More;
use Test::Deep;
use Test::Exception;

use Cwd;
use File::Compare qw/ compare_text /;
use File::Temp qw/ tempfile /;
use Path::Tiny qw/ path /;

use lib 't/lib';
use Pod::Readme::Test::Kit;
use Pod::Readme::Test;

# use Pod::Readme::Test::Kit;

my $class = 'Pod::Readme';
use_ok $class;
Expand Down
16 changes: 15 additions & 1 deletion t/plugins/requires.t
@@ -1,5 +1,19 @@
use strict;
use warnings;

use Test::More;
use Test::Deep;
use Test::Exception;

use Cwd;
use File::Compare qw/ compare_text /;
use File::Temp qw/ tempfile /;
use Path::Tiny qw/ path /;

use lib 't/lib';
use Pod::Readme::Test::Kit;
use Pod::Readme::Test;

# use Pod::Readme::Test::Kit;

my $class = 'Pod::Readme';
use_ok $class;
Expand Down
16 changes: 15 additions & 1 deletion t/plugins/version.t
@@ -1,5 +1,19 @@
use strict;
use warnings;

use Test::More;
use Test::Deep;
use Test::Exception;

use Cwd;
use File::Compare qw/ compare_text /;
use File::Temp qw/ tempfile /;
use Path::Tiny qw/ path /;

use lib 't/lib';
use Pod::Readme::Test::Kit;
use Pod::Readme::Test;

# use Pod::Readme::Test::Kit;

our $VERSION = '1.23'; # for testing

Expand Down

0 comments on commit 8619eeb

Please sign in to comment.