aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/commands/credentials_test.rb
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2017-11-15 21:31:50 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2017-11-15 21:31:57 +0100
commit68479d09ba6bbd583055672eb70518c1586ae534 (patch)
tree81f7864cc1340921037fdd6c35642e105aaa04ea /railties/test/commands/credentials_test.rb
parent415d0543a527dcd2e099dcd819c6938f3dcac54a (diff)
parent7a8728a03986489e1c843ed850afc2c16fb6eb06 (diff)
downloadrails-68479d09ba6bbd583055672eb70518c1586ae534.tar.gz
rails-68479d09ba6bbd583055672eb70518c1586ae534.tar.bz2
rails-68479d09ba6bbd583055672eb70518c1586ae534.zip
Merge branch 'freeletics-manage-multiple-credential-files'
Fixes https://github.com/rails/rails/pull/30940
Diffstat (limited to 'railties/test/commands/credentials_test.rb')
-rw-r--r--railties/test/commands/credentials_test.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/railties/test/commands/credentials_test.rb b/railties/test/commands/credentials_test.rb
index 743fb5f788..4ef827fcf1 100644
--- a/railties/test/commands/credentials_test.rb
+++ b/railties/test/commands/credentials_test.rb
@@ -13,7 +13,10 @@ class Rails::Command::CredentialsCommandTest < ActiveSupport::TestCase
teardown { teardown_app }
test "edit without editor gives hint" do
- assert_match "No $EDITOR to open credentials in", run_edit_command(editor: "")
+ run_edit_command(editor: "").tap do |output|
+ assert_match "No $EDITOR to open file in", output
+ assert_match "bin/rails credentials:edit", output
+ end
end
test "edit credentials" do