add strict + warnings to tests
Brian Cassidy [Thu, 7 May 2009 23:56:15 +0000 (20:56 -0300)]
t/01-use.t
t/98-pod_coverage.t
t/99-pod.t

index f4dd83c..4bef453 100644 (file)
@@ -1,3 +1,6 @@
+use strict;
+use warnings;
+
 use Test::More tests => 1;
 
 BEGIN { 
index 2c5ca56..bb5c02e 100644 (file)
@@ -1,3 +1,6 @@
+use strict;
+use warnings;
+
 use Test::More;
 eval "use Test::Pod::Coverage 1.00";
 plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
index 437887a..d6e05a9 100644 (file)
@@ -1,3 +1,6 @@
+use strict;
+use warnings;
+
 use Test::More;
 eval "use Test::Pod 1.00";
 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;