Froze rails gems
[depot.git] / vendor / rails / activerecord / test / cases / i18n_test.rb
1 require "cases/helper"
2 require 'models/topic'
3 require 'models/reply'
4
5 class ActiveRecordI18nTests < Test::Unit::TestCase
6
7 def setup
8 I18n.backend = I18n::Backend::Simple.new
9 end
10
11 def test_translated_model_attributes
12 I18n.backend.store_translations 'en', :activerecord => {:attributes => {:topic => {:title => 'topic title attribute'} } }
13 assert_equal 'topic title attribute', Topic.human_attribute_name('title')
14 end
15
16 def test_translated_model_attributes_with_sti
17 I18n.backend.store_translations 'en', :activerecord => {:attributes => {:reply => {:title => 'reply title attribute'} } }
18 assert_equal 'reply title attribute', Reply.human_attribute_name('title')
19 end
20
21 def test_translated_model_attributes_with_sti_fallback
22 I18n.backend.store_translations 'en', :activerecord => {:attributes => {:topic => {:title => 'topic title attribute'} } }
23 assert_equal 'topic title attribute', Reply.human_attribute_name('title')
24 end
25
26 def test_translated_model_names
27 I18n.backend.store_translations 'en', :activerecord => {:models => {:topic => 'topic model'} }
28 assert_equal 'topic model', Topic.human_name
29 end
30
31 def test_translated_model_names_with_sti
32 I18n.backend.store_translations 'en', :activerecord => {:models => {:reply => 'reply model'} }
33 assert_equal 'reply model', Reply.human_name
34 end
35
36 def test_translated_model_names_with_sti_fallback
37 I18n.backend.store_translations 'en', :activerecord => {:models => {:topic => 'topic model'} }
38 assert_equal 'topic model', Reply.human_name
39 end
40 end
41