File tree Expand file tree Collapse file tree 5 files changed +1
-10
lines changed Expand file tree Collapse file tree 5 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 103
103
"Test::Fatal" : " 0" ,
104
104
"Test::Memory::Cycle" : " 1.06" ,
105
105
"Test::More" : " 0.96" ,
106
- "Test::NoWarnings" : " 1.04" ,
107
106
"Test::Output" : " 0" ,
108
107
"Test::Taint" : " 1.08" ,
109
108
"Test::Warn" : " 0" ,
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ my %WriteMakefileArgs = (
53
53
" Test::Fatal" => 0,
54
54
" Test::Memory::Cycle" => " 1.06" ,
55
55
" Test::More" => " 0.96" ,
56
- " Test::NoWarnings" => " 1.04" ,
57
56
" Test::Output" => 0,
58
57
" Test::Taint" => " 1.08" ,
59
58
" Test::Warn" => 0,
@@ -96,7 +95,6 @@ my %FallbackPrereqs = (
96
95
" Test::Fatal" => 0,
97
96
" Test::Memory::Cycle" => " 1.06" ,
98
97
" Test::More" => " 0.96" ,
99
- " Test::NoWarnings" => " 1.04" ,
100
98
" Test::Output" => 0,
101
99
" Test::Taint" => " 1.08" ,
102
100
" Test::Warn" => 0,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ on 'test' => sub {
36
36
requires " Test::Fatal" => " 0" ;
37
37
requires " Test::Memory::Cycle" => " 1.06" ;
38
38
requires " Test::More" => " 0.96" ;
39
- requires " Test::NoWarnings" => " 1.04" ;
40
39
requires " Test::Output" => " 0" ;
41
40
requires " Test::Taint" => " 1.08" ;
42
41
requires " Test::Warn" => " 0" ;
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ Scalar::Util = 1.14
30
30
[Prereqs / TestRequires]
31
31
HTTP::Daemon = 6.12
32
32
Test::Memory::Cycle = 1.06
33
- Test::NoWarnings = 1.04
34
33
Test::Taint = 1.08
35
34
36
35
[Prereqs / DevelopRequires]
Original file line number Diff line number Diff line change @@ -3,11 +3,7 @@ use warnings;
3
3
use URI::file ();
4
4
5
5
use Test::More;
6
-
7
- eval ' use Test::NoWarnings' ;
8
- if ( $@ ) {
9
- plan( skip_all => ' Test::NoWarnings not installed' );
10
- }
6
+ use Test::Warnings;
11
7
12
8
plan( tests => 2 ); # the use_ok and then the warning check
13
9
$ENV {test } = 14;
You can’t perform that action at this time.
0 commit comments