Fix warnings_once.t to not die if Test::NoWarnings isn't installed.
Kaare Rasmussen [Tue, 6 Dec 2011 21:23:51 +0000 (22:23 +0100)]
Changes
dist.ini
t/warnings_once.t

diff --git a/Changes b/Changes
index 06c7b29..8353265 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,9 @@
 Revision history for Perl extension MooseX-Singleton
 
 {{$NEXT}}
+    - Fix warnings_once.t to not die if Test::NoWarnings isn't installed (Kaare)
+
+0.28 2011-12-05
     - Fix RT Bug #46086, "name used only once" (Thanks chisel for the patch and
       the test)
 
index 4f1f425..e327420 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -3,7 +3,7 @@ author  = Shawn M Moore <sartak@gmail.com>
 license = Perl_5
 copyright_holder = Shawn M Moore
 
-version = 0.28
+version = 0.29
 
 [GatherDir]
 [PruneCruft]
index 696cbe5..6152226 100644 (file)
@@ -1,6 +1,11 @@
 # test script for: https://rt.cpan.org/Ticket/Display.html?id=46086
+use strict;
+use warnings;
+
 use Test::More qw(no_plan);
-use Test::NoWarnings;
+use Test::Requires {
+       'Test::NoWarnings' => 0.01
+};
 
 BEGIN {
     package OnlyUsedOnce;