diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2019-04-02 16:30:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-02 16:30:46 +0900 |
commit | ef5ebd93d68c8287e42754e6bafc6c2ec0afa900 (patch) | |
tree | 91649bf3eb2d307bda7a8536e9665d6d9df12247 /railties/test/commands | |
parent | 0214d406b1df96dc51487d45fd841941270d43fd (diff) | |
parent | 29b16d3ff87a3da4ec4ac33a17ad9fd9540284c8 (diff) | |
download | rails-ef5ebd93d68c8287e42754e6bafc6c2ec0afa900.tar.gz rails-ef5ebd93d68c8287e42754e6bafc6c2ec0afa900.tar.bz2 rails-ef5ebd93d68c8287e42754e6bafc6c2ec0afa900.zip |
Merge pull request #35703 from y-yagi/add_database_option_to_dbconsole_command
Rename `connection` option to `database` in `dbconsole` command
Diffstat (limited to 'railties/test/commands')
-rw-r--r-- | railties/test/commands/dbconsole_test.rb | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/railties/test/commands/dbconsole_test.rb b/railties/test/commands/dbconsole_test.rb index 65f6916acb..76a7cd055f 100644 --- a/railties/test/commands/dbconsole_test.rb +++ b/railties/test/commands/dbconsole_test.rb @@ -216,22 +216,22 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase end end - def test_specifying_a_custom_connection_and_environment + def test_specifying_a_custom_database_and_environment stub_available_environments(["development"]) do - dbconsole = parse_arguments(["-c", "custom", "-e", "development"]) + dbconsole = parse_arguments(["--db", "custom", "-e", "development"]) assert_equal "development", dbconsole[:environment] - assert_equal "custom", dbconsole.connection + assert_equal "custom", dbconsole.database end end - def test_specifying_a_missing_connection + def test_specifying_a_missing_database app_db_config({}) do e = assert_raises(ActiveRecord::AdapterNotSpecified) do - Rails::Command.invoke(:dbconsole, ["-c", "i_do_not_exist"]) + Rails::Command.invoke(:dbconsole, ["--db", "i_do_not_exist"]) end - assert_includes e.message, "'i_do_not_exist' connection is not configured." + assert_includes e.message, "'i_do_not_exist' database is not configured." end end @@ -245,6 +245,18 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase end end + def test_connection_options_is_deprecate + command = Rails::Command::DbconsoleCommand.new([], ["-c", "custom"]) + Rails::DBConsole.stub(:start, nil) do + assert_deprecated("`connection` option is deprecated") do + command.perform + end + end + + assert_equal "custom", command.options["connection"] + assert_equal "custom", command.options["database"] + end + def test_print_help_short stdout = capture(:stdout) do Rails::Command.invoke(:dbconsole, ["-h"]) |