Methods
T
Instance Public methods
test_dup_deep_copy_config()
# File activerecord/test/cases/connection_adapters/connection_specification_test.rb, line 6
def test_dup_deep_copy_config
  spec = ConnectionSpecification.new({ :a => :b }, "bar")
  assert_not_equal(spec.config.object_id, spec.dup.config.object_id)
end