mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
adding a test case for custom locking
This commit is contained in:
17
activerecord/test/cases/custom_locking_test.rb
Normal file
17
activerecord/test/cases/custom_locking_test.rb
Normal file
@@ -0,0 +1,17 @@
|
||||
require "cases/helper"
|
||||
require 'models/person'
|
||||
|
||||
module ActiveRecord
|
||||
class CustomLockingTest < ActiveRecord::TestCase
|
||||
fixtures :people
|
||||
|
||||
def test_custom_lock
|
||||
if current_adapter?(:MysqlAdapter, :Mysql2Adapter)
|
||||
assert_match 'SHARE MODE', Person.lock('LOCK IN SHARE MODE').to_sql
|
||||
assert_sql(/LOCK IN SHARE MODE/) do
|
||||
Person.find(1, :lock => 'LOCK IN SHARE MODE')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user