Revert "Rails 3.2.7 deprecates update_attribute in favor of update_column"

Rails 3.2.8 is rolling back the deprecations.

This reverts commit 7d41072c0e.
This commit is contained in:
José Valim
2012-08-05 09:24:10 -03:00
parent c3d9dc3007
commit 4a24667e80
4 changed files with 4 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ class HttpAuthenticationTest < ActionController::IntegrationTest
test 'sign in should authenticate with really long token' do
token = "token_containing_so_many_characters_that_the_base64_encoding_will_wrap"
user = create_user
user.update_column :authentication_token, token
user.update_attribute :authentication_token, token
get users_path(:format => :xml), {}, "HTTP_AUTHORIZATION" => "Basic #{Base64.encode64("#{token}:x")}"
assert_response :success
assert_match "<email>user@test.com</email>", response.body

View File

@@ -293,7 +293,7 @@ class PasswordTest < ActionController::IntegrationTest
test "after recovering a password, should set failed attempts to 0" do
user = create_user
user.update_column(:failed_attempts, 10)
user.update_attribute(:failed_attempts, 10)
assert_equal 10, user.failed_attempts
request_forgot_password

View File

@@ -121,7 +121,7 @@ class TokenAuthenticationTest < ActionController::IntegrationTest
@user = nil
user2 = create_user_with_authentication_token(:email => "another@test.com")
user2.update_column(:authentication_token, "ANOTHERTOKEN")
user2.update_attribute(:authentication_token, "ANOTHERTOKEN")
assert_not_equal user1, user2
visit users_path(Devise.token_authentication_key.to_s + '[$ne]' => user1.authentication_token)