summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-01-26 08:21:43 +0000
committergit <svn-admin@ruby-lang.org>2026-02-13 03:09:16 +0000
commit3dc8ce28b017389eaa3caf0e79823b5330616f13 (patch)
tree072eeea30a837e9ed380e66f78a44bae5135a563
parent5d39c1a41f6a86f4cbab325a6ba7bcdc6aadc831 (diff)
[ruby/rubygems] Add test for bundle help greet command
https://github.com/ruby/rubygems/commit/602b0cecb8 Co-authored-by: hsbt <12301+hsbt@users.noreply.github.com>
-rw-r--r--spec/bundler/plugins/command_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/bundler/plugins/command_spec.rb b/spec/bundler/plugins/command_spec.rb
index 7dca1aae19..05d535a70c 100644
--- a/spec/bundler/plugins/command_spec.rb
+++ b/spec/bundler/plugins/command_spec.rb
@@ -82,6 +82,9 @@ RSpec.describe "command plugins" do
bundle "greet -h"
expect(out).to eq("Usage: bundle greet [NAME]")
+
+ bundle "help greet"
+ expect(out).to eq("Usage: bundle greet [NAME]")
end
it "raises error on redeclaration of command" do