fixed regression in previous release
John Napiorkowski [Tue, 24 Dec 2013 14:01:35 +0000 (08:01 -0600)]
Changes
t/body_fh.t

diff --git a/Changes b/Changes
index bc44660..8d2100a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,8 +3,10 @@
   - Announcing the repo is not open for development of Perl Catalyst 'Runner'
   - http://questhub.io/realm/perl/explore/latest/tag/runner
 
-5.90059_003 - TBA
+5.90059_003 - 2013-12-24
   - More documentation about alternative ways to setup middleware.
+  - removed unneeded use of Devel::Dwarn in test case that was causing
+    fails to install (sorry).
 
 5.90059_002 - 2013-12-21
   - We now pass a scalar or filehandle directly to you Plack handler, rather
index cc00020..447794a 100644 (file)
@@ -4,7 +4,10 @@ use Test::More;
 use HTTP::Request::Common;
 use HTTP::Message::PSGI;
 use Plack::Util;
-use Devel::Dwarn;
+
+# Test case to check that we now send scalar and filehandle like
+# bodys directly to the PSGI engine, rather than call $writer->write
+# or unroll the filehandle ourselves.
 
 {
   package MyApp::Controller::Root;