From: Karen Etheridge Date: Sun, 23 Sep 2012 19:04:45 +0000 (-0700) Subject: ensure strict and warnings is always in effect X-Git-Tag: v0.18~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-UndefTolerant.git;a=commitdiff_plain;h=4fbe5d7ddbe709d7ace80815445dab2204fc4d02 ensure strict and warnings is always in effect --- diff --git a/t/basic.t b/t/basic.t index 17c4e17..e5e362c 100644 --- a/t/basic.t +++ b/t/basic.t @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Test::More; use Test::Moose; diff --git a/t/defaults.t b/t/defaults.t index d48299c..34f25cd 100644 --- a/t/defaults.t +++ b/t/defaults.t @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Test::More; use Test::Fatal; use Test::Moose;