[前][次][番号順一覧][スレッド一覧]

ruby-changes:63354

From: Hiroshi <ko1@a...>
Date: Thu, 15 Oct 2020 17:19:22 +0900 (JST)
Subject: [ruby-changes:63354] b68c22b3c6 (master): Partly reverted test failing with https://github.com/rubygems/rubygems/pull/3921

https://git.ruby-lang.org/ruby.git/commit/?id=b68c22b3c6

From b68c22b3c6a80ebf96d446348bc8007b8a10f694 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Thu, 15 Oct 2020 16:05:47 +0900
Subject: Partly reverted test failing with
 https://github.com/rubygems/rubygems/pull/3921


diff --git a/spec/bundler/bundler/cli_spec.rb b/spec/bundler/bundler/cli_spec.rb
index 8e4f9e6..50e2a69 100644
--- a/spec/bundler/bundler/cli_spec.rb
+++ b/spec/bundler/bundler/cli_spec.rb
@@ -32,49 +32,49 @@ RSpec.describe "bundle executable" do https://github.com/ruby/ruby/blob/trunk/spec/bundler/bundler/cli_spec.rb#L32
     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
 
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]