1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

failing test for i18n key collision with namespaced models

This commit is contained in:
Santiago Pastorino 2011-02-27 21:14:11 -02:00
parent 86ad8a6c87
commit acf0688fdd
2 changed files with 11 additions and 0 deletions

View file

@ -49,6 +49,13 @@ class ActiveModelI18nTests < ActiveModel::TestCase
assert_equal 'person name attribute', Child.human_attribute_name('name')
end
def test_translated_model_attributes_with_attribute_matching_namespaced_model_name
I18n.backend.store_translations 'en', :activemodel => {:attributes => {:person => {:gender => 'person gender'}, :"person/gender" => {:attribute => 'person gender attribute'}}}
assert_equal 'person gender', Person.human_attribute_name('gender')
assert_equal 'person gender attribute', Person::Gender.human_attribute_name('attribute')
end
def test_translated_model_names
I18n.backend.store_translations 'en', :activemodel => {:models => {:person => 'person model'} }
assert_equal 'person model', Person.model_name.human

View file

@ -9,6 +9,10 @@ class Person
end
end
class Person::Gender
extend ActiveModel::Translation
end
class Child < Person
end