Skip to content
Prev Previous commit
Next Next commit
Update TestAppUnicode.pm
  • Loading branch information
a-adam committed Jan 22, 2014
commit d4e0f1d757e25530534eb59b67605c5a6c7a0bf0
6 changes: 5 additions & 1 deletion t/lib/TestAppUnicode.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ get '/form' => sub {
})."\x{E9} - string1: ".params->{'string1'}
};

get '/unicode-json' => sub {
get '/unicode-content-length' => sub {
"\x{100}0123456789";
};

get '/unicode-content-length-json' => sub {
{ test => "\x{100}" };
};

Expand Down