Skip to content

Commit b45d9ed

Browse files
committed
Add requirement for Test::More in the tests
1 parent 3e27592 commit b45d9ed

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Makefile.PL

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ my %parms = (
1313
VERSION_FROM => 'lib/HTML/Tagset.pm',
1414
LICENSE => 'artistic_2',
1515
MIN_PERL_VERSION => 5.010001,
16+
TEST_REQUIRES => {
17+
'Test::More' => '0.95',
18+
},
1619
META_MERGE => {
1720
resources => {
1821
license => 'https://opensource.org/licenses/artistic-license-2.0',

cpanfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ on 'build' => sub {
66
};
77

88
on 'test' => sub {
9-
requires 'Test::More', '0.94'; # So we can run subtests on v5.10
9+
requires 'Test::More', '0.95';
1010
};

0 commit comments

Comments
 (0)