diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-01-23 17:24:52 -0500 |
---|---|---|
committer | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-01-24 12:28:43 -0500 |
commit | a670654882063f0e89a5e450a16dc3cda2ed4030 (patch) | |
tree | 66b85fb7bafdce2bafa41bb96abf300d3696c454 /railties/test | |
parent | 060fe164471213209de9637c19ee5c25492d0c1c (diff) | |
download | rails-a670654882063f0e89a5e450a16dc3cda2ed4030.tar.gz rails-a670654882063f0e89a5e450a16dc3cda2ed4030.tar.bz2 rails-a670654882063f0e89a5e450a16dc3cda2ed4030.zip |
Fix deeply nested namespace command printing
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/command/base_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/test/command/base_test.rb b/railties/test/command/base_test.rb index a49ae8aae7..9132c8b4af 100644 --- a/railties/test/command/base_test.rb +++ b/railties/test/command/base_test.rb @@ -4,10 +4,12 @@ require "abstract_unit" require "rails/command" require "rails/commands/generate/generate_command" require "rails/commands/secrets/secrets_command" +require "rails/commands/db/system/change/change_command" class Rails::Command::BaseTest < ActiveSupport::TestCase test "printing commands" do assert_equal %w(generate), Rails::Command::GenerateCommand.printing_commands assert_equal %w(secrets:setup secrets:edit secrets:show), Rails::Command::SecretsCommand.printing_commands + assert_equal %w(db:system:change), Rails::Command::Db::System::ChangeCommand.printing_commands end end |