1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller/localized_templates_test.rb
2013-01-22 10:26:44 +09:00

28 lines
626 B
Ruby

require 'abstract_unit'
class LocalizedController < ActionController::Base
def hello_world
end
end
class LocalizedTemplatesTest < ActionController::TestCase
tests LocalizedController
def test_localized_template_is_used
old_locale = I18n.locale
I18n.locale = :de
get :hello_world
assert_equal "Gutten Tag", @response.body
ensure
I18n.locale = old_locale
end
def test_default_locale_template_is_used_when_locale_is_missing
old_locale = I18n.locale
I18n.locale = :dk
get :hello_world
assert_equal "Hello World", @response.body
ensure
I18n.locale = old_locale
end
end