X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Futf_incoming.t;h=a06338d9ba3c9311271071560056343afe605d7b;hp=b7438306911109b760f4f031f061a1e8e0f9db32;hb=7b39dea14ca0d7fdd024a070e6221545c7635943;hpb=59e11cd702fecaabe37167918a79c4c62f935acb diff --git a/t/utf_incoming.t b/t/utf_incoming.t index b743830..a06338d 100644 --- a/t/utf_incoming.t +++ b/t/utf_incoming.t @@ -98,7 +98,8 @@ use File::Spec; package MyApp; use Catalyst; - MyApp->config(encoding=>'UTF-8'); + # Default encoding is now UTF-8 + # MyApp->config(encoding=>'UTF-8'); Test::More::ok(MyApp->setup, 'setup app'); } @@ -221,7 +222,7 @@ use Catalyst::Test 'MyApp'; } { - my $res = request "/root/stream_write_fh"; + my $res = request "/root/stream_write_fh"; is $res->code, 200, 'OK'; is decode_utf8($res->content), '

This is stream_write_fh action ♥

', 'correct body';