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

ruby-changes:62220

From: MSP-Greg <ko1@a...>
Date: Wed, 15 Jul 2020 16:05:34 +0900 (JST)
Subject: [ruby-changes:62220] ad743337b3 (master): [rubygems/rubygems] bundler/spec/commands/binstubs_spec.rb - remove global Windows skip

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

From ad743337b376d8e2a9dae7350b0e89eed636c5bb Mon Sep 17 00:00:00 2001
From: MSP-Greg <Greg.mpls@g...>
Date: Tue, 16 Jun 2020 20:36:12 -0500
Subject: [rubygems/rubygems] bundler/spec/commands/binstubs_spec.rb - remove
 global Windows skip

Added one skip for:
bundle binstubs <gem>
when the gem exists in the lockfile
when generating bundle binstub outside bundler
should abort

https://github.com/rubygems/rubygems/commit/b77b484889

diff --git a/spec/bundler/commands/binstubs_spec.rb b/spec/bundler/commands/binstubs_spec.rb
index 89551d1..81e7817 100644
--- a/spec/bundler/commands/binstubs_spec.rb
+++ b/spec/bundler/commands/binstubs_spec.rb
@@ -1,10 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/spec/bundler/commands/binstubs_spec.rb#L1
 # frozen_string_literal: true
 
 RSpec.describe "bundle binstubs <gem>" do
-  before do
-    skip "https://github.com/rubygems/bundler/issues/6894" if Gem.win_platform?
-  end
-
   context "when the gem exists in the lockfile" do
     it "sets up the binstub" do
       install_gemfile <<-G
@@ -79,6 +75,7 @@ RSpec.describe "bundle binstubs <gem>" do https://github.com/ruby/ruby/blob/trunk/spec/bundler/commands/binstubs_spec.rb#L75
 
     context "when generating bundle binstub outside bundler" do
       it "should abort" do
+        skip "Unknown issue" if Gem.win_platform?
         install_gemfile <<-G
           source "#{file_uri_for(gem_repo1)}"
           gem "rack"
-- 
cgit v0.10.2


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

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