mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d097ee9706
This reverts commit55d9e494e8
, reversing changes made to03e987cd8f
. Legacy mysql adapter is already removed in #22642.
30 lines
740 B
Ruby
30 lines
740 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cases/helper"
|
|
|
|
class TestRecord < ActiveRecord::Base
|
|
end
|
|
|
|
class TestDisconnectedAdapter < ActiveRecord::TestCase
|
|
self.use_transactional_tests = false
|
|
|
|
def setup
|
|
@connection = ActiveRecord::Base.connection
|
|
end
|
|
|
|
teardown do
|
|
return if in_memory_db?
|
|
db_config = ActiveRecord::Base.connection_db_config
|
|
ActiveRecord::Base.establish_connection(db_config)
|
|
end
|
|
|
|
unless in_memory_db?
|
|
test "can't execute statements while disconnected" do
|
|
@connection.execute "SELECT count(*) from products"
|
|
@connection.disconnect!
|
|
assert_raises(ActiveRecord::ConnectionNotEstablished) do
|
|
@connection.execute "SELECT count(*) from products"
|
|
end
|
|
end
|
|
end
|
|
end
|