summaryrefslogtreecommitdiff
path: root/spec/install/gemfile
diff options
context:
space:
mode:
authorSutou Kouhei <kou@clear-code.com>2020-01-08 10:41:56 +0900
committerSutou Kouhei <kou@clear-code.com>2020-01-15 06:27:03 +0900
commite008edb4873aca89fe4aee079a89bd9b2dcdcfd4 (patch)
tree07ca19783b90c00c0eeeb6b8ad00a0ebbed3936d /spec/install/gemfile
parent0c6cbbbafbb75e3ffe8917a4359fd2ef57f0b559 (diff)
downloadbundler-e008edb4873aca89fe4aee079a89bd9b2dcdcfd4.tar.gz
Revert unskippable skips
Diffstat (limited to 'spec/install/gemfile')
-rw-r--r--spec/install/gemfile/platform_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/install/gemfile/platform_spec.rb b/spec/install/gemfile/platform_spec.rb
index c096531398..52e1cf86fa 100644
--- a/spec/install/gemfile/platform_spec.rb
+++ b/spec/install/gemfile/platform_spec.rb
@@ -274,6 +274,8 @@ end
RSpec.describe "bundle install with platform conditionals" do
it "installs gems tagged w/ the current platforms" do
+ skip "platform issues" if Gem.win_platform?
+
install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
@@ -299,6 +301,8 @@ RSpec.describe "bundle install with platform conditionals" do
end
it "installs gems tagged w/ the current platforms inline" do
+ skip "platform issues" if Gem.win_platform?
+
install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
gem "nokogiri", :platforms => :#{local_tag}
@@ -317,6 +321,8 @@ RSpec.describe "bundle install with platform conditionals" do
end
it "installs gems tagged w/ the current platform inline" do
+ skip "platform issues" if Gem.win_platform?
+
install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
gem "nokogiri", :platform => :#{local_tag}