[Catalyst-commits] r13157 - in Catalyst-Runtime/5.80/trunk: .
lib/Catalyst
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Tue Apr 13 22:12:13 GMT 2010
Author: t0m
Date: 2010-04-13 23:12:13 +0100 (Tue, 13 Apr 2010)
New Revision: 13157
Modified:
Catalyst-Runtime/5.80/trunk/Changes
Catalyst-Runtime/5.80/trunk/lib/Catalyst/Test.pm
Log:
Document return of C::T::get is bytes not characters, RT#53678
Modified: Catalyst-Runtime/5.80/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.80/trunk/Changes 2010-04-13 22:06:19 UTC (rev 13156)
+++ Catalyst-Runtime/5.80/trunk/Changes 2010-04-13 22:12:13 UTC (rev 13157)
@@ -14,6 +14,10 @@
- Require CGI::Simple::Cookie version 1.109 to ensure support for the
HttpOnly flag
+ Documentation:
+ - The Catalyst::Test::get method is documented as returning the raw
+ response bytes without any character decoding (RT#53678)
+
5.80022 2010-03-28 19:43:01
New features:
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Test.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Test.pm 2010-04-13 22:06:19 UTC (rev 13156)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Test.pm 2010-04-13 22:12:13 UTC (rev 13157)
@@ -202,6 +202,9 @@
is ( $uri->path , '/y');
my $content = get($uri->path);
+Note also that the content is returned as raw bytes, without any attempt
+to decode it into characters.
+
=head2 $res = request( ... );
Returns an L<HTTP::Response> object. Accepts an optional hashref for request
More information about the Catalyst-commits
mailing list