diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-05-30 18:40:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-05-30 18:40:02 +0000 |
commit | 9894a3781e9cc7fc295f7fa7133fe951ca843e51 (patch) | |
tree | d42d4924513227feede04948590dbdbe53b989f8 /test/functional | |
parent | 5d2abb84bdcb8724e5d24a5299bb90f0770f6c23 (diff) | |
download | redmine-9894a3781e9cc7fc295f7fa7133fe951ca843e51.tar.gz redmine-9894a3781e9cc7fc295f7fa7133fe951ca843e51.zip |
Fixed: browser's accept-language subcodes ignored (#1320).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1481 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/welcome_controller_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/functional/welcome_controller_test.rb b/test/functional/welcome_controller_test.rb index 18146c6aa..3e1308ef1 100644 --- a/test/functional/welcome_controller_test.rb +++ b/test/functional/welcome_controller_test.rb @@ -46,4 +46,11 @@ class WelcomeControllerTest < Test::Unit::TestCase get :index assert_equal :fr, @controller.current_language end + + def test_browser_language_alternate + Setting.default_language = 'en' + @request.env['HTTP_ACCEPT_LANGUAGE'] = 'zh-TW' + get :index + assert_equal :"zh-tw", @controller.current_language + end end |