Merge pull request #33336 from bogdanvlviv/fix-stubbed-methods-in-test-cases

Fix stubbed methods in test cases
This commit is contained in:
Rafael França 2018-07-10 18:03:35 -04:00 committed by GitHub
commit 7fc499d135
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -842,7 +842,7 @@ class TransactionalFixturesOnConnectionNotification < ActiveRecord::TestCase
end.new
connection.pool = Class.new do
def lock_thread=(lock_thread); false; end
def lock_thread=(lock_thread); end
end.new
connection.expects(:begin_transaction).with(joinable: false)
@ -863,7 +863,7 @@ class TransactionalFixturesOnConnectionNotification < ActiveRecord::TestCase
end.new
connection.pool = Class.new do
def lock_thread=(lock_thread); false; end
def lock_thread=(lock_thread); end
end.new
fire_connection_notification(connection)

View File

@ -104,7 +104,7 @@ if current_adapter?(:Mysql2Adapter)
class MySQLDBDropTest < ActiveRecord::TestCase
def setup
@connection = Class.new { def drop_database(name); true end }.new
@connection = Class.new { def drop_database(name); end }.new
@configuration = {
"adapter" => "mysql2",
"database" => "my-app-db"