diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-03-15 18:33:20 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-03-15 18:36:08 -0700 |
commit | dcf1441c0f8c405b1d44cce2e0fbf86a2396dcf1 (patch) | |
tree | ebf75a32db4e1c70db2a858c687ea2bc4efae4ca /activerecord/test/cases/validations | |
parent | 1def14309f32cc1c7d66b8625754ba2827410c96 (diff) | |
download | rails-dcf1441c0f8c405b1d44cce2e0fbf86a2396dcf1.tar.gz rails-dcf1441c0f8c405b1d44cce2e0fbf86a2396dcf1.tar.bz2 rails-dcf1441c0f8c405b1d44cce2e0fbf86a2396dcf1.zip |
removing dead code from activerecord tests. [#4187 state:resolved]
Signed-off-by: wycats <wycats@gmail.com>
Diffstat (limited to 'activerecord/test/cases/validations')
-rw-r--r-- | activerecord/test/cases/validations/i18n_validation_test.rb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/activerecord/test/cases/validations/i18n_validation_test.rb b/activerecord/test/cases/validations/i18n_validation_test.rb index a0ff35f948..38fa2b821d 100644 --- a/activerecord/test/cases/validations/i18n_validation_test.rb +++ b/activerecord/test/cases/validations/i18n_validation_test.rb @@ -47,25 +47,6 @@ class I18nValidationTest < ActiveRecord::TestCase @topic.valid? end - # validates_uniqueness_of w/o mocha - - def test_validates_associated_finds_custom_model_key_translation - I18n.backend.store_translations 'en', :activerecord => {:errors => {:models => {:topic => {:attributes => {:title => {:taken => 'custom message'}}}}}} - I18n.backend.store_translations 'en', :activerecord => {:errors => {:messages => {:taken => 'global message'}}} - - Topic.validates_uniqueness_of :title - unique_topic.valid? - assert_equal ['custom message'], unique_topic.errors[:replies] - end - - def test_validates_associated_finds_global_default_translation - I18n.backend.store_translations 'en', :activerecord => {:errors => {:messages => {:taken => 'global message'}}} - - Topic.validates_uniqueness_of :title - unique_topic.valid? - assert_equal ['global message'], unique_topic.errors[:replies] - end - # validates_associated w/ mocha def test_validates_associated_generates_message |