Replace deprecated update_attributes with update.

https://rubyinrails.com/2019/04/09/rails-6-1-activerecord-deprecates-update-attributes-methods/

DEPRECATION WARNING: update_attributes! is deprecated and will be removed from Rails 6.1 (please, use update! instead)
This commit is contained in:
evazion
2019-08-25 20:29:32 -05:00
parent 62875eabb2
commit 0df5c0fd2b
23 changed files with 63 additions and 87 deletions

View File

@@ -121,7 +121,7 @@ class ForumPostTest < ActiveSupport::TestCase
end
should "not be updateable" do
@post.update_attributes(:body => "xxx")
@post.update(body: "xxx")
@post.reload
assert_equal("zzz", @post.body)
end
@@ -150,14 +150,14 @@ class ForumPostTest < ActiveSupport::TestCase
# updating the original post
travel(1.second) do
posts.first.update_attributes(:body => "xxx")
posts.first.update(body: "xxx")
end
@topic.reload
assert_equal(posts.first.updated_at.to_s, @topic.updated_at.to_s)
# updating a non-original post
travel(2.seconds) do
posts.last.update_attributes(:body => "xxx")
posts.last.update(body: "xxx")
end
assert_equal(posts.first.updated_at.to_s, @topic.updated_at.to_s)
end
@@ -181,7 +181,7 @@ class ForumPostTest < ActiveSupport::TestCase
end
should "record its updater" do
@post.update_attributes(:body => "abc")
@post.update(body: "abc")
assert_equal(@second_user.id, @post.updater_id)
end
end