nuked Test::NoWarnings
Matt S Trout [Thu, 25 May 2006 21:09:25 +0000 (21:09 +0000)]
Changes
Makefile.PL
t/unit_controller_namespace.t
t/unit_core_log.t

diff --git a/Changes b/Changes
index 395e539..f7c1a37 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 This file documents the revision history for Perl extension Catalyst.
 
+        - Removed test dependency on Test::NoWarnings
         - Removed dependency on UNIVERSAL::require
         - Split out Catalyst::Helper into a new distribution
         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
index 7b9a439..902af0d 100644 (file)
@@ -26,7 +26,6 @@ requires 'Path::Class' => '0.09';
 requires 'Scalar::Util';
 requires 'Text::SimpleTable' => '0.03';
 requires 'Test::MockObject';
-requires 'Test::NoWarnings' => '0.082';
 requires 'Time::HiRes';
 requires 'Tree::Simple' => '1.15';
 requires 'Tree::Simple::Visitor::FindByPath';
index 55d1ed5..41acfe7 100644 (file)
@@ -1,8 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 3;
-use Test::NoWarnings;    # Adds an extra test.
+use Test::More tests => 2;
 
 BEGIN {
   package MyApp::Controller::Foo;
index 9b730f0..26a52d3 100644 (file)
@@ -1,8 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 24;
-use Test::NoWarnings;    # Adds an extra test.
+use Test::More tests => 23;
 
 my $LOG;