Sha256: 7162a4c20e752453992beddf2e601c5ed30bdab5ee82807d751724b5e08516ba

Contents?: true

Size: 1.05 KB

Versions: 48

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

require "abstract_unit"

class LocalizedController < ActionController::Base
  def hello_world
  end
end

class LocalizedTemplatesTest < ActionController::TestCase
  tests LocalizedController

  setup do
    @old_locale = I18n.locale
  end

  teardown do
    I18n.locale = @old_locale
  end

  def test_localized_template_is_used
    I18n.locale = :de
    get :hello_world
    assert_equal "Guten Tag", @response.body
  end

  def test_default_locale_template_is_used_when_locale_is_missing
    I18n.locale = :dk
    get :hello_world
    assert_equal "Hello World", @response.body
  end

  def test_use_fallback_locales
    I18n.locale = :"de-AT"
    I18n.backend.class.include(I18n::Backend::Fallbacks)
    I18n.fallbacks[:"de-AT"] = [:de]

    get :hello_world
    assert_equal "Guten Tag", @response.body
  end

  def test_localized_template_has_correct_header_with_no_format_in_template_name
    I18n.locale = :it
    get :hello_world
    assert_equal "Ciao Mondo", @response.body
    assert_equal "text/html",  @response.content_type
  end
end

Version data entries

48 entries across 48 versions & 2 rubygems

Version Path
jets-1.5.6 vendor/rails/actionpack/test/controller/localized_templates_test.rb
jets-1.5.5 vendor/rails/actionpack/test/controller/localized_templates_test.rb
jets-1.5.4 vendor/rails/actionpack/test/controller/localized_templates_test.rb
jets-1.5.3 vendor/rails/actionpack/test/controller/localized_templates_test.rb
jets-1.5.2 vendor/rails/actionpack/test/controller/localized_templates_test.rb
jets-1.5.1 vendor/rails/actionpack/test/controller/localized_templates_test.rb
jets-1.5.0 vendor/rails/actionpack/test/controller/localized_templates_test.rb
ruby-on-quails-0.1.0 actionpack/test/controller/localized_templates_test.rb