class ActiveRecordI18nTests

Public Instance Methods

setup() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 8
def setup
  I18n.backend = I18n::Backend::Simple.new
end
test_translated_model_attributes() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 12
def test_translated_model_attributes
  I18n.backend.store_translations "en", activerecord: { attributes: { topic: { title: "topic title attribute" } } }
  assert_equal "topic title attribute", Topic.human_attribute_name("title")
end
test_translated_model_attributes_with_sti() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 22
def test_translated_model_attributes_with_sti
  I18n.backend.store_translations "en", activerecord: { attributes: { reply: { title: "reply title attribute" } } }
  assert_equal "reply title attribute", Reply.human_attribute_name("title")
end
test_translated_model_attributes_with_sti_fallback() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 27
def test_translated_model_attributes_with_sti_fallback
  I18n.backend.store_translations "en", activerecord: { attributes: { topic: { title: "topic title attribute" } } }
  assert_equal "topic title attribute", Reply.human_attribute_name("title")
end
test_translated_model_attributes_with_symbols() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 17
def test_translated_model_attributes_with_symbols
  I18n.backend.store_translations "en", activerecord: { attributes: { topic: { title: "topic title attribute" } } }
  assert_equal "topic title attribute", Topic.human_attribute_name(:title)
end
test_translated_model_names() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 32
def test_translated_model_names
  I18n.backend.store_translations "en", activerecord: { models: { topic: "topic model" } }
  assert_equal "topic model", Topic.model_name.human
end
test_translated_model_names_with_sti() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 37
def test_translated_model_names_with_sti
  I18n.backend.store_translations "en", activerecord: { models: { reply: "reply model" } }
  assert_equal "reply model", Reply.model_name.human
end
test_translated_model_names_with_sti_fallback() click to toggle source
# File activerecord/test/cases/i18n_test.rb, line 42
def test_translated_model_names_with_sti_fallback
  I18n.backend.store_translations "en", activerecord: { models: { topic: "topic model" } }
  assert_equal "topic model", Reply.model_name.human
end