1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #28368 from y-yagi/add_test_for_secrets_command

Add secrets edit test
This commit is contained in:
Kasper Timm Hansen 2017-03-15 20:40:57 +01:00 committed by GitHub
commit f38de5a7b4

View file

@ -17,8 +17,21 @@ class Rails::Command::SecretsCommandTest < ActiveSupport::TestCase
assert_match "No $EDITOR to open decrypted secrets in", run_edit_command(editor: "")
end
test "edit secrets" do
run_setup_command
# Run twice to ensure encrypted secrets can be reread after first edit pass.
2.times do
assert_match(/external_api_key: 1466aac22e6a869134be3d09b9e89232fc2c2289…/, run_edit_command)
end
end
private
def run_edit_command(editor: "cat")
Dir.chdir(app_path) { `EDITOR="#{editor}" bin/rails secrets:edit` }
end
def run_setup_command
Dir.chdir(app_path) { `bin/rails secrets:setup` }
end
end