summaryrefslogtreecommitdiff
path: root/spec/bundler
diff options
context:
space:
mode:
authorMSP-Greg <Greg.mpls@gmail.com>2020-06-16 20:36:12 -0500
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-07-15 16:05:12 +0900
commitad743337b376d8e2a9dae7350b0e89eed636c5bb (patch)
tree297fc96bf752fddf7a197799ba7447d3340d1827 /spec/bundler
parentf3ad8a00e260184be1b63231e2f99a1ef73eba60 (diff)
[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
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3275
Diffstat (limited to 'spec/bundler')
-rw-r--r--spec/bundler/commands/binstubs_spec.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/spec/bundler/commands/binstubs_spec.rb b/spec/bundler/commands/binstubs_spec.rb
index 89551d1c39..81e7817a3e 100644
--- a/spec/bundler/commands/binstubs_spec.rb
+++ b/spec/bundler/commands/binstubs_spec.rb
@@ -1,10 +1,6 @@
# 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
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"