Test uri_for with path = 0
[catagits/Catalyst-Runtime.git] / t / aggregate / catalyst_test_utf8.t
CommitLineData
d9669e44 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use lib "$Bin/../lib";
5
6use Test::More;
7# "binmode STDOUT, ':utf8'" is insufficient, see http://code.google.com/p/test-more/issues/detail?id=46#c1
8binmode Test::More->builder->output, ":utf8";
9binmode Test::More->builder->failure_output, ":utf8";
10
11use Catalyst::Test 'TestAppEncoding';
12
13plan skip_all => 'This test does not run live'
14 if $ENV{CATALYST_SERVER};
15
16{
17 # Test for https://rt.cpan.org/Ticket/Display.html?id=53678
18 # Catalyst::Test::get currently returns the raw octets, but it
19 # would be more useful if it decoded the content based on the
20 # Content-Type charset, as Test::WWW::Mechanize::Catalyst does
21 use utf8;
22 my $body = get('/utf8_non_ascii_content');
23 utf8::decode($body);
24 is $body, 'ʇsʎlɐʇɐɔ', 'Catalyst::Test::get returned content correctly UTF-8 encoded';
25}
26
27done_testing;