aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-06-11 17:21:22 +0200
committerJosé Valim <jose.valim@gmail.com>2011-06-11 18:01:26 +0200
commit410a42860b7e2b83b37573e5b72d1f1cb93a9f69 (patch)
tree3aa8bcd9ce92e7367634ea524c088072f60c59e5 /activemodel/test
parentf5e1548c1bd5645b9a6bf66c8f5fedf801f23218 (diff)
downloadrails-410a42860b7e2b83b37573e5b72d1f1cb93a9f69.tar.gz
rails-410a42860b7e2b83b37573e5b72d1f1cb93a9f69.tar.bz2
rails-410a42860b7e2b83b37573e5b72d1f1cb93a9f69.zip
Get rid of the alternate namespace lookup.
Diffstat (limited to 'activemodel/test')
-rw-r--r--activemodel/test/cases/translation_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/activemodel/test/cases/translation_test.rb b/activemodel/test/cases/translation_test.rb
index 838956bc98..1b1d972d5c 100644
--- a/activemodel/test/cases/translation_test.rb
+++ b/activemodel/test/cases/translation_test.rb
@@ -76,15 +76,5 @@ class ActiveModelI18nTests < ActiveModel::TestCase
Person.model_name.human(options)
assert_equal({:default => 'person model'}, options)
end
-
- def test_alternate_namespaced_model_attribute_translation
- I18n.backend.store_translations 'en', :activemodel => {:attributes => {:person => {:gender => {:attribute => 'person gender attribute'}}}}
- assert_equal 'person gender attribute', Person::Gender.human_attribute_name('attribute')
- end
-
- def test_alternate_namespaced_model_translation
- I18n.backend.store_translations 'en', :activemodel => {:models => {:person => {:gender => 'person gender model'}}}
- assert_equal 'person gender model', Person::Gender.model_name.human
- end
end