aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-10-23 13:10:51 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2018-03-28 13:11:01 -0400
commit3c1a8ee7d7af658eb9e4cb927559907c09d13c6c (patch)
tree2b1f0a4c72e800db18f145c6a70692d1d6c32632 /activerecord/test/models
parentfe37da4ebf227cd9b1056eed8b0a35ae86037de3 (diff)
downloadrails-3c1a8ee7d7af658eb9e4cb927559907c09d13c6c.tar.gz
rails-3c1a8ee7d7af658eb9e4cb927559907c09d13c6c.tar.bz2
rails-3c1a8ee7d7af658eb9e4cb927559907c09d13c6c.zip
Merge pull request #30956 from CJStadler/with-lock-changed-deprecation
Fix deprecation warnings from with_lock
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/frog.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/test/models/frog.rb b/activerecord/test/models/frog.rb
new file mode 100644
index 0000000000..73601aacdd
--- /dev/null
+++ b/activerecord/test/models/frog.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+class Frog < ActiveRecord::Base
+ after_save do
+ with_lock do
+ end
+ end
+end