summaryrefslogtreecommitdiff
path: root/spec/bundler/bundler
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-10-15 16:05:47 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-10-15 17:19:02 +0900
commitb68c22b3c6a80ebf96d446348bc8007b8a10f694 (patch)
treedeba39f4e5c79a42483d51a3c3f3f107127c8e63 /spec/bundler/bundler
parentd386a58f6f1865aaa35eda5af55cff3ff3cca4ca (diff)
Partly reverted test failing with https://github.com/rubygems/rubygems/pull/3921
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3659
Diffstat (limited to 'spec/bundler/bundler')
-rw-r--r--spec/bundler/bundler/cli_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/bundler/bundler/cli_spec.rb b/spec/bundler/bundler/cli_spec.rb
index 8e4f9e6d36..50e2a698eb 100644
--- a/spec/bundler/bundler/cli_spec.rb
+++ b/spec/bundler/bundler/cli_spec.rb
@@ -32,49 +32,49 @@ RSpec.describe "bundle executable" do
it "aliases e to exec" do
bundle "e --help"
- expect(out).to include("bundle-exec")
+ expect(out).to include("BUNDLE-EXEC")
end
it "aliases ex to exec" do
bundle "ex --help"
- expect(out).to include("bundle-exec")
+ expect(out).to include("BUNDLE-EXEC")
end
it "aliases exe to exec" do
bundle "exe --help"
- expect(out).to include("bundle-exec")
+ expect(out).to include("BUNDLE-EXEC")
end
it "aliases c to check" do
bundle "c --help"
- expect(out).to include("bundle-check")
+ expect(out).to include("BUNDLE-CHECK")
end
it "aliases i to install" do
bundle "i --help"
- expect(out).to include("bundle-install")
+ expect(out).to include("BUNDLE-INSTALL")
end
it "aliases ls to list" do
bundle "ls --help"
- expect(out).to include("bundle-list")
+ expect(out).to include("BUNDLE-LIST")
end
it "aliases package to cache" do
bundle "package --help"
- expect(out).to include("bundle-cache")
+ expect(out).to include("BUNDLE-CACHE")
end
it "aliases pack to cache" do
bundle "pack --help"
- expect(out).to include("bundle-cache")
+ expect(out).to include("BUNDLE-CACHE")
end
end