From 68307a1ae5fc9e454230629f5cbbbeaf79fd7cec Mon Sep 17 00:00:00 2001 From: saksmlz Date: Wed, 31 Oct 2012 12:59:11 +0300 Subject: Fix ActiveRecord#update_column return value --- activerecord/test/cases/persistence_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activerecord/test/cases/persistence_test.rb') diff --git a/activerecord/test/cases/persistence_test.rb b/activerecord/test/cases/persistence_test.rb index 66f884287d..be164afe9f 100644 --- a/activerecord/test/cases/persistence_test.rb +++ b/activerecord/test/cases/persistence_test.rb @@ -513,6 +513,12 @@ class PersistencesTest < ActiveRecord::TestCase assert_equal 123, topic.id end + def test_update_column_should_return_correct_value + developer = Developer.find(1) + return_value = developer.update_column(:salary, 80001) + assert_equal return_value, true + end + def test_update_attributes topic = Topic.find(1) assert !topic.approved? -- cgit v1.2.3