From 50c338b229eddd9772974bf64071c0b330ffb2c6 Mon Sep 17 00:00:00 2001
From: Jean-Philippe Lang <jp_lang@yahoo.fr>
Date: Fri, 30 May 2008 18:42:56 +0000
Subject: [PATCH] Additional test for r1481.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1482 e93f8b46-1217-0410-a6f0-8f06a7374b81
---
 test/functional/welcome_controller_test.rb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/test/functional/welcome_controller_test.rb b/test/functional/welcome_controller_test.rb
index 3e1308ef1..df565a751 100644
--- a/test/functional/welcome_controller_test.rb
+++ b/test/functional/welcome_controller_test.rb
@@ -53,4 +53,11 @@ class WelcomeControllerTest < Test::Unit::TestCase
     get :index
     assert_equal :"zh-tw", @controller.current_language
   end
+  
+  def test_browser_language_alternate_not_valid
+    Setting.default_language = 'en'
+    @request.env['HTTP_ACCEPT_LANGUAGE'] = 'fr-CA'
+    get :index
+    assert_equal :fr, @controller.current_language
+  end
 end
-- 
GitLab