aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJeremy Baker <jhubert@gmail.com>2016-02-04 11:13:05 -0800
committerJeremy Baker <jhubert@gmail.com>2016-02-04 11:13:05 -0800
commit96fdbd3be3e6c5c57e394019e8b812da6d705769 (patch)
tree13a7dd74ab0ac4642b104f61911f41e942fae379 /activerecord
parentd871696b4a8b021b67a3ce6c3cb5d5dcbbb578fe (diff)
downloadrails-96fdbd3be3e6c5c57e394019e8b812da6d705769.tar.gz
rails-96fdbd3be3e6c5c57e394019e8b812da6d705769.tar.bz2
rails-96fdbd3be3e6c5c57e394019e8b812da6d705769.zip
Remove accidental additional test
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/connection_adapters/connection_specification_test.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/connection_adapters/connection_specification_test.rb b/activerecord/test/cases/connection_adapters/connection_specification_test.rb
index 99fe7020ea..ea2196cda2 100644
--- a/activerecord/test/cases/connection_adapters/connection_specification_test.rb
+++ b/activerecord/test/cases/connection_adapters/connection_specification_test.rb
@@ -7,11 +7,6 @@ module ActiveRecord
spec = ConnectionSpecification.new({ :a => :b }, "bar")
assert_not_equal(spec.config.object_id, spec.dup.config.object_id)
end
-
- def test_handle_missing_scheme
- spec = ConnectionSpecification.new({ :url => 'testing' }, "bar")
- assert_not_equal(spec.config.object_id, spec.dup.config.object_id)
- end
end
end
end