We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa658a commit abb350cCopy full SHA for abb350c
dist.ini
@@ -30,7 +30,6 @@ Scalar::Util = 1.14
30
[Prereqs / TestRequires]
31
HTTP::Daemon = 6.12
32
Test::Memory::Cycle = 1.06
33
-Test::Taint = 1.08
34
35
[Prereqs / DevelopRequires]
36
LWP::Protocol::https = 6.07
t/taint.t
@@ -2,13 +2,8 @@
2
3
use warnings;
4
use strict;
5
-use Test::More;
6
-
7
-BEGIN {
8
- eval 'use Test::Taint';
9
- plan skip_all => 'Test::Taint required for checking taintedness' if $@;
10
- plan tests=>6;
11
-}
+use Test::More tests => 6;
+use Test::Taint 1.08;
12
13
BEGIN {
14
use_ok( 'WWW::Mechanize' );
0 commit comments