use warnings everywhere
Karen Etheridge [Wed, 12 Aug 2015 17:57:19 +0000 (10:57 -0700)]
lib/Catalyst/Plugin/Email.pm
t/01use.t

index 4106afe..676fc66 100644 (file)
@@ -1,6 +1,8 @@
 package Catalyst::Plugin::Email;
 
 use strict;
+use warnings;
+
 use Email::Send;
 use Email::MIME;
 use Email::MIME::Creator;
index d8c9e7d..a578ebd 100644 (file)
--- a/t/01use.t
+++ b/t/01use.t
@@ -1,4 +1,5 @@
 use strict;
+use warnings;
 use Test::More tests => 1;
 
 BEGIN { use_ok('Catalyst::Plugin::Email') }