This commit is contained in:
Hiroshi SHIBATA 2020-10-15 16:05:47 +09:00
parent d386a58f6f
commit b68c22b3c6
Notes: git 2020-10-15 17:19:30 +09:00

View File

@ -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