You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
12 years ago
|
Test::Kwalitee didn't used to check for strict when this module was released.
|
||
|
|
||
|
--- t/release-kwalitee.t
|
||
|
+++ t/release-kwalitee.t
|
||
|
@@ -12,6 +12,9 @@
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use Test::More; # needed to provide plan.
|
||
|
-eval "use Test::Kwalitee";
|
||
|
|
||
|
+eval {
|
||
|
+ require Test::Kwalitee;
|
||
|
+ Test::Kwalitee->import( tests => [ qw( -use_strict ) ] );
|
||
|
+};
|
||
|
plan skip_all => "Test::Kwalitee required for testing kwalitee" if $@;
|