aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/commands
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-12-29 18:57:55 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-12-29 18:57:55 +0900
commitfb173b66138adf1d6940aca3af76d3c62307441d (patch)
tree4c2075d68445f103718cfcf34c7c89a603ec4bba /railties/test/commands
parenta4fe5c5b6606f5b320222069f076c73a2eb3d12e (diff)
downloadrails-fb173b66138adf1d6940aca3af76d3c62307441d.tar.gz
rails-fb173b66138adf1d6940aca3af76d3c62307441d.tar.bz2
rails-fb173b66138adf1d6940aca3af76d3c62307441d.zip
Do not show suggestion message when not exist suggestion
**before** ``` $ ./bin/rails g g Could not find generator 'g'. Maybe you meant nil? Run `rails generate --help` for more options. ``` **after** ``` $ ./bin/rails g g Could not find generator 'g'. Run `rails generate --help` for more options. ```
Diffstat (limited to 'railties/test/commands')
-rw-r--r--railties/test/commands/server_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/test/commands/server_test.rb b/railties/test/commands/server_test.rb
index fbdd3f3ebb..25b89ecbd8 100644
--- a/railties/test/commands/server_test.rb
+++ b/railties/test/commands/server_test.rb
@@ -32,6 +32,12 @@ class Rails::Command::ServerCommandTest < ActiveSupport::TestCase
assert_match(/Could not find server "tin". Maybe you meant "thin"?/, run_command("--using", "tin"))
end
+ def test_using_server_mistype_without_suggestion
+ output = run_command("--using", "t")
+ assert_match(/Could not find server "t"/, output)
+ assert_no_match(/Maybe you meant/, output)
+ end
+
def test_using_positional_argument_deprecation
assert_match(/DEPRECATION WARNING/, run_command("tin"))
end