diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2015-09-21 19:17:16 +0100 |
---|---|---|
committer | Andrew White <pixeltrix@users.noreply.github.com> | 2015-09-21 19:17:16 +0100 |
commit | 5db723327d75a4b77ba49f0fa4b4b29cd1e04402 (patch) | |
tree | 8e7f68a430e5cd6d3279e49211c82992fed0e659 /activerecord | |
parent | 926002a7f39ef185f4a9f9ec1264204230f895ab (diff) | |
parent | e8c6f5cffea4c45d632ee8d9e7c6b5f8d1e6ab63 (diff) | |
download | rails-5db723327d75a4b77ba49f0fa4b4b29cd1e04402.tar.gz rails-5db723327d75a4b77ba49f0fa4b4b29cd1e04402.tar.bz2 rails-5db723327d75a4b77ba49f0fa4b4b29cd1e04402.zip |
Merge pull request #21704 from ronakjangir47/eliminate_tests
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') |