2011-06-06 14:17:44 -04:00
|
|
|
require "cases/helper"
|
2016-08-06 12:26:20 -04:00
|
|
|
require "models/person"
|
2011-02-21 19:11:52 -05:00
|
|
|
|
|
|
|
module ActiveRecord
|
|
|
|
class CustomLockingTest < ActiveRecord::TestCase
|
|
|
|
fixtures :people
|
|
|
|
|
|
|
|
def test_custom_lock
|
2015-12-15 17:01:30 -05:00
|
|
|
if current_adapter?(:Mysql2Adapter)
|
2016-08-06 12:26:20 -04:00
|
|
|
assert_match "SHARE MODE", Person.lock("LOCK IN SHARE MODE").to_sql
|
2011-02-21 19:11:52 -05:00
|
|
|
assert_sql(/LOCK IN SHARE MODE/) do
|
2016-08-06 13:37:57 -04:00
|
|
|
Person.all.merge!(lock: "LOCK IN SHARE MODE").find(1)
|
2011-02-21 19:11:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|