mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
3baace687c
Follow-Up to https://github.com/rails/rails/pull/14348 Ensure that SQLCounter.clear_log is called after each test. This is a step to prevent side effects when running tests. This will allow us to run them in random order.
28 lines
691 B
Ruby
28 lines
691 B
Ruby
require "cases/helper"
|
|
|
|
class TestRecord < ActiveRecord::Base
|
|
end
|
|
|
|
class TestDisconnectedAdapter < ActiveRecord::TestCase
|
|
self.use_transactional_fixtures = false
|
|
|
|
def setup
|
|
@connection = ActiveRecord::Base.connection
|
|
end
|
|
|
|
teardown do
|
|
return if in_memory_db?
|
|
spec = ActiveRecord::Base.connection_config
|
|
ActiveRecord::Base.establish_connection(spec)
|
|
end
|
|
|
|
unless in_memory_db?
|
|
test "can't execute statements while disconnected" do
|
|
@connection.execute "SELECT count(*) from products"
|
|
@connection.disconnect!
|
|
assert_raises(ActiveRecord::StatementInvalid) do
|
|
@connection.execute "SELECT count(*) from products"
|
|
end
|
|
end
|
|
end
|
|
end
|