0
@@ -5,42 +5,37 @@ require 'models/reply'
0
class ActiveRecordI18nTests < Test::Unit::TestCase
0
+
I18n.backend = I18n::Backend::Simple.new0
def test_translated_model_attributes
0
- I18n.
store_translations 'en-US', :activerecord => {:attributes => {:topic => {:title => 'topic title attribute'} } }
0
+ I18n.
backend.store_translations 'en-US', :activerecord => {:attributes => {:topic => {:title => 'topic title attribute'} } }
0
assert_equal 'topic title attribute', Topic.human_attribute_name('title')
0
def test_translated_model_attributes_with_sti
0
- I18n.
store_translations 'en-US', :activerecord => {:attributes => {:reply => {:title => 'reply title attribute'} } }
0
+ I18n.
backend.store_translations 'en-US', :activerecord => {:attributes => {:reply => {:title => 'reply title attribute'} } }
0
assert_equal 'reply title attribute', Reply.human_attribute_name('title')
0
def test_translated_model_attributes_with_sti_fallback
0
- I18n.
store_translations 'en-US', :activerecord => {:attributes => {:topic => {:title => 'topic title attribute'} } }
0
+ I18n.
backend.store_translations 'en-US', :activerecord => {:attributes => {:topic => {:title => 'topic title attribute'} } }
0
assert_equal 'topic title attribute', Reply.human_attribute_name('title')
0
def test_translated_model_names
0
- I18n.
store_translations 'en-US', :activerecord => {:models => {:topic => 'topic model'} }
0
+ I18n.
backend.store_translations 'en-US', :activerecord => {:models => {:topic => 'topic model'} }
0
assert_equal 'topic model', Topic.human_name
0
def test_translated_model_names_with_sti
0
- I18n.
store_translations 'en-US', :activerecord => {:models => {:reply => 'reply model'} }
0
+ I18n.
backend.store_translations 'en-US', :activerecord => {:models => {:reply => 'reply model'} }
0
assert_equal 'reply model', Reply.human_name
0
def test_translated_model_names_with_sti_fallback
0
- I18n.
store_translations 'en-US', :activerecord => {:models => {:topic => 'topic model'} }
0
+ I18n.
backend.store_translations 'en-US', :activerecord => {:models => {:topic => 'topic model'} }
0
assert_equal 'topic model', Reply.human_name
0
- def reset_translations
0
- I18n.backend = I18n::Backend::Simple.new