From: Karen Etheridge Date: Sun, 15 Mar 2015 00:25:01 +0000 (-0700) Subject: drop the use of fatal warnings in tests X-Git-Tag: v1.000006~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSafe-Isa.git;a=commitdiff_plain;h=c03ede634565ba88366e36ce5cacac3dabb35500 drop the use of fatal warnings in tests It can be a good idea to fatalize warnings for the author, but we do not want to block end-user installs if some new perl adds a warning that we did not predict. --- diff --git a/t/safe_isa.t b/t/safe_isa.t index 837f3c4..77b5bc0 100644 --- a/t/safe_isa.t +++ b/t/safe_isa.t @@ -1,5 +1,5 @@ use strict; -use warnings FATAL => 'all'; +use warnings; use Test::More tests => 20; { package Foo; sub new { bless({}, $_[0]) } }