diff options
author | Ronak Jangir <ronakjangir47@gmail.com> | 2015-09-21 22:47:41 +0530 |
---|---|---|
committer | Ronak Jangir <ronakjangir47@gmail.com> | 2015-09-21 23:14:39 +0530 |
commit | e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63 (patch) | |
tree | 8e7f68a430e5cd6d3279e49211c82992fed0e659 /activerecord | |
parent | 926002a7f39ef185f4a9f9ec1264204230f895ab (diff) | |
download | rails-e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63.tar.gz rails-e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63.tar.bz2 rails-e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63.zip |
Eliminate `test_tables_quoting` following seems to be left in #21687
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb | 8 |
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') |