diff options
author | José Valim <jose.valim@gmail.com> | 2009-02-01 09:43:39 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2009-02-02 17:56:22 +0100 |
commit | 2ecc678ed6ab60c1bdc7dce67c0c908542c5008d (patch) | |
tree | fbff29a324181432279363bb229f62bf8d345d4b /actionpack/test/controller | |
parent | beca1f2e151558ded3d5a4efebd328ab2533edc6 (diff) | |
download | rails-2ecc678ed6ab60c1bdc7dce67c0c908542c5008d.tar.gz rails-2ecc678ed6ab60c1bdc7dce67c0c908542c5008d.tar.bz2 rails-2ecc678ed6ab60c1bdc7dce67c0c908542c5008d.zip |
Added localized rescue (404.da.html) [#1835 state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/rescue_test.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/actionpack/test/controller/rescue_test.rb b/actionpack/test/controller/rescue_test.rb index 9f6b45f065..85c2a4c1bb 100644 --- a/actionpack/test/controller/rescue_test.rb +++ b/actionpack/test/controller/rescue_test.rb @@ -199,6 +199,31 @@ class RescueControllerTest < ActionController::TestCase end end + def test_rescue_action_in_public_with_localized_error_file + # Reload and register danish language for testing + I18n.reload! + I18n.backend.store_translations 'da', {} + + # Ensure original are still the same since we are reindexing view paths + assert_equal ORIGINAL_LOCALES, I18n.available_locales.map(&:to_s).sort + + # Change locale + old_locale = I18n.locale + I18n.locale = :da + + with_rails_root FIXTURE_PUBLIC do + with_all_requests_local false do + get :raises + end + end + + assert_response :internal_server_error + body = File.read("#{FIXTURE_PUBLIC}/public/500.da.html") + assert_equal body, @response.body + ensure + I18n.locale = old_locale + end + def test_rescue_action_in_public_with_error_file with_rails_root FIXTURE_PUBLIC do with_all_requests_local false do |