aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/commands/dbconsole_test.rb
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2015-04-22 14:44:04 -0400
committerAndrew White <andyw@pixeltrix.co.uk>2015-04-22 14:47:13 -0400
commit688c0ec26454c9ab64d8d11fc689a3fe9ab5924f (patch)
treef710d8a8a070a6e5de329f6cfbb2b87cc641205c /railties/test/commands/dbconsole_test.rb
parent7196372a8ea01329fd49c5e71d392385f2b2e7e6 (diff)
downloadrails-688c0ec26454c9ab64d8d11fc689a3fe9ab5924f.tar.gz
rails-688c0ec26454c9ab64d8d11fc689a3fe9ab5924f.tar.bz2
rails-688c0ec26454c9ab64d8d11fc689a3fe9ab5924f.zip
Remove sqlite support from `rails dbconsole`
Support for versions of SQLite less than 3 was removed in #6011 as part of the Rails 4.0 release. Therefore there is no need to have support for it in the `rails dbconsole` command anymore.
Diffstat (limited to 'railties/test/commands/dbconsole_test.rb')
-rw-r--r--railties/test/commands/dbconsole_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/railties/test/commands/dbconsole_test.rb b/railties/test/commands/dbconsole_test.rb
index a3cd1eb0ed..2e8dd99f36 100644
--- a/railties/test/commands/dbconsole_test.rb
+++ b/railties/test/commands/dbconsole_test.rb
@@ -158,12 +158,6 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase
assert_equal 'q1w2e3', ENV['PGPASSWORD']
end
- def test_sqlite
- start(adapter: 'sqlite', database: 'db')
- assert !aborted
- assert_equal ['sqlite', 'db'], dbconsole.find_cmd_and_exec_args
- end
-
def test_sqlite3
start(adapter: 'sqlite3', database: 'db.sqlite3')
assert !aborted