[Rt-commit] r18171 - in rt/3.999/branches/merge_to_3.8.2: t/i18n

sunnavy at bestpractical.com sunnavy at bestpractical.com
Wed Feb 4 02:54:23 EST 2009


Author: sunnavy
Date: Wed Feb  4 02:54:22 2009
New Revision: 18171

Modified:
   rt/3.999/branches/merge_to_3.8.2/   (props changed)
   rt/3.999/branches/merge_to_3.8.2/t/i18n/default.t

Log:
 r19503 at sunnavys-mb:  sunnavy | 2009-02-04 15:50:10 +0800
 fiddle t/i18n/default.t


Modified: rt/3.999/branches/merge_to_3.8.2/t/i18n/default.t
==============================================================================
--- rt/3.999/branches/merge_to_3.8.2/t/i18n/default.t	(original)
+++ rt/3.999/branches/merge_to_3.8.2/t/i18n/default.t	Wed Feb  4 02:54:22 2009
@@ -7,14 +7,14 @@
 
 my ($baseurl, $m) = RT::Test->started_ok;
 $m->get_ok('/');
-$m->title_is('Login');
+$m->title_is('Login!');
 
 $m->get_ok('/', { 'Accept-Language' => 'x-klingon' });
-$m->title_is('Login', 'unavailable language fallback to en');
+$m->title_is('Login!', 'unavailable language fallback to en');
 
 $m->add_header('Accept-Language' => 'zh-tw,zh;q=0.8,en-gb;q=0.5,en;q=0.3');
 $m->get_ok('/');
 use utf8;
 Encode::_utf8_on($m->{content});
-$m->title_is('登入', 'Page title properly translated to chinese');
+$m->title_is('登入!', 'Page title properly translated to chinese');
 $m->content_contains('密碼','Password properly translated');


More information about the Rt-commit mailing list