X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestAppEncoding%2FController%2FRoot.pm;h=1c42bfa4ea93291826140b2a21a89f0f291770ad;hp=b82e1bf4cfa5346e0e3d6d82b642d0c6ca452170;hb=4a64c27b130d781382e4c4f8c57bab11ea2f7d88;hpb=7b39dea14ca0d7fdd024a070e6221545c7635943 diff --git a/t/lib/TestAppEncoding/Controller/Root.pm b/t/lib/TestAppEncoding/Controller/Root.pm index b82e1bf..1c42bfa 100644 --- a/t/lib/TestAppEncoding/Controller/Root.pm +++ b/t/lib/TestAppEncoding/Controller/Root.pm @@ -8,6 +8,7 @@ __PACKAGE__->config->{namespace} = ''; sub binary : Local { my ($self, $c) = @_; + $c->res->content_type('image/gif'); $c->res->body(do { open(my $fh, '<', $c->path_to('..', '..', 'catalyst_130pix.gif')) or die $!; binmode($fh); @@ -31,12 +32,8 @@ sub utf8_non_ascii_content : Local { my $str = 'ʇsʎlɐʇɐɔ'; # 'catalyst' flipped at http://www.revfad.com/flip.html ok utf8::is_utf8($str), '$str is in UTF8 internally'; - - # encode $str into a sequence of octets and turn off the UTF-8 flag, so that - # we don't get the 'Wide character in syswrite' error in Catalyst::Engine - utf8::encode($str); - ok !utf8::is_utf8($str), '$str is a sequence of octets (byte string)'; - + + $c->res->content_type('text/plain'); $c->res->body($str); }