aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/command
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-07-06 21:40:33 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-07-07 07:22:01 +0900
commitaf5368eeff693bcb8e64b96df93691ded8908f1c (patch)
tree33c7d996fcd563e610e7454576c28a60b3fe4adf /railties/test/command
parentc8ce3459648ce0f86646b564ce1c0bb16a4b48eb (diff)
downloadrails-af5368eeff693bcb8e64b96df93691ded8908f1c.tar.gz
rails-af5368eeff693bcb8e64b96df93691ded8908f1c.tar.bz2
rails-af5368eeff693bcb8e64b96df93691ded8908f1c.zip
Add `rails secrets:show` command
When secrets confirmed with the `secrets:edit` command, `secrets.yml.enc` will change without updating the secrets. Therefore, even if only want to check secrets, the difference will come out. This is a little inconvenient. In order to solve this problem, added the `secrets:show` command. If just want to check secrets, no difference will occur use this command.
Diffstat (limited to 'railties/test/command')
-rw-r--r--railties/test/command/base_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/command/base_test.rb b/railties/test/command/base_test.rb
index ebfc4d0ba9..bac3285f48 100644
--- a/railties/test/command/base_test.rb
+++ b/railties/test/command/base_test.rb
@@ -6,6 +6,6 @@ require "rails/commands/secrets/secrets_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), Rails::Command::SecretsCommand.printing_commands
+ assert_equal %w(secrets:setup secrets:edit secrets:show), Rails::Command::SecretsCommand.printing_commands
end
end