[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
This commit is contained in:
MSP-Greg 2020-06-16 20:36:12 -05:00 коммит произвёл Hiroshi SHIBATA
Родитель f3ad8a00e2
Коммит ad743337b3
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

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