From: Brian Cassidy Date: Thu, 7 May 2009 23:56:15 +0000 (-0300) Subject: add strict + warnings to tests X-Git-Tag: 0.04~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DateTime-Epoch.git;a=commitdiff_plain;h=262db26459bccded9875228b4eb3f83972e2bd56 add strict + warnings to tests --- diff --git a/t/01-use.t b/t/01-use.t index f4dd83c..4bef453 100644 --- a/t/01-use.t +++ b/t/01-use.t @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Test::More tests => 1; BEGIN { diff --git a/t/98-pod_coverage.t b/t/98-pod_coverage.t index 2c5ca56..bb5c02e 100644 --- a/t/98-pod_coverage.t +++ b/t/98-pod_coverage.t @@ -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 $@; diff --git a/t/99-pod.t b/t/99-pod.t index 437887a..d6e05a9 100644 --- a/t/99-pod.t +++ b/t/99-pod.t @@ -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 $@;