import torrus 1.0.9
[freeside.git] / rt / t / i18n / default.t
1 #!/usr/bin/perl -w
2 use strict;
3 use warnings;
4
5 use RT::Test tests => 8;
6
7 my ($baseurl, $m) = RT::Test->started_ok;
8 $m->get_ok('/');
9 $m->title_is('Login');
10
11 $m->get_ok('/', { 'Accept-Language' => 'x-klingon' });
12 $m->title_is('Login', 'unavailable language fallback to en');
13
14 $m->add_header('Accept-Language' => 'zh-tw,zh;q=0.8,en-gb;q=0.5,en;q=0.3');
15 $m->get_ok('/');
16 use utf8;
17 Encode::_utf8_on($m->{content});
18 $m->title_is('登入', 'Page title properly translated to chinese');
19 $m->content_contains('密碼','Password properly translated');