aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonak Jangir <ronakjangir47@gmail.com>2015-09-21 22:47:41 +0530
committerRonak Jangir <ronakjangir47@gmail.com>2015-09-21 23:14:39 +0530
commite8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63 (patch)
tree8e7f68a430e5cd6d3279e49211c82992fed0e659
parent926002a7f39ef185f4a9f9ec1264204230f895ab (diff)
downloadrails-e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63.tar.gz
rails-e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63.tar.bz2
rails-e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63.zip
Eliminate `test_tables_quoting` following seems to be left in #21687
-rw-r--r--activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb b/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
index 8655fa26b6..29573d8e0d 100644
--- a/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
+++ b/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
@@ -65,14 +65,6 @@ module ActiveRecord
end
end
- def test_tables_quoting
- @conn.tables(nil, "foo-bar", nil)
- flunk
- rescue => e
- # assertion for *quoted* database properly
- assert_match(/database 'foo-bar'/, e.inspect)
- end
-
def test_pk_and_sequence_for
with_example_table do
pk, seq = @conn.pk_and_sequence_for('ex')