mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b658cf1198
It doesn't serve much purpose now that ActiveRecord::Base.all returns a Relation. The code is moved to active_record_deprecated_finders.
17 lines
450 B
Ruby
17 lines
450 B
Ruby
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.all.merge!(:lock => 'LOCK IN SHARE MODE').find(1)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|