make all warnings fatal in tests
Karen Etheridge [Sat, 9 Feb 2013 23:51:13 +0000 (15:51 -0800)]
t/01use.t
t/02subclass.t
t/03configfile_method.t
t/04a_getopt.t
t/04b_getopt.t
t/05_default_sub.t
t/06_path_tiny.t

index c2e38c0..8b1cdb1 100644 (file)
--- a/t/01use.t
+++ b/t/01use.t
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::More tests => 2;
 use Test::NoWarnings 1.04 ':early';
index 477f8b2..1a67eaa 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::More tests => 3;
 use Test::Fatal;
index 0d14122..42b5e31 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::More tests => 7;
 use Test::NoWarnings 1.04 ':early';
index 2677f50..7013e88 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::More tests => 2;
 use Test::NoWarnings 1.04 ':early';
index 4db87d3..5e7bc2e 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::Requires 'MooseX::Getopt';    # skip all if not installed
 use Test::More tests => 3;
index 956bf6a..c91a777 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::Requires 'MooseX::SimpleConfig';      # skip all if not reuqired
 use Test::More tests => 10;
index 3f88c70..e44472d 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
 use Test::Requires 'MooseX::SimpleConfig';      # skip all if not reuqired
 use Test::More tests => 5;