summaryrefslogtreecommitdiff
path: root/spec/runtime/inline_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-04 06:15:45 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-07 09:57:11 +0100
commitabaebf391641da830e681c974218389a334e2767 (patch)
treead79a77b46fdeacf9e4cda0ce42522ffe9cf1eb6 /spec/runtime/inline_spec.rb
parent5ab7cc6f9c5a009528e7d8b3079e24622bbd776c (diff)
downloadbundler-abaebf391641da830e681c974218389a334e2767.tar.gz
Skip the rest of the failures on Windows
Diffstat (limited to 'spec/runtime/inline_spec.rb')
-rw-r--r--spec/runtime/inline_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/runtime/inline_spec.rb b/spec/runtime/inline_spec.rb
index cd762fe636..def258ec66 100644
--- a/spec/runtime/inline_spec.rb
+++ b/spec/runtime/inline_spec.rb
@@ -46,6 +46,8 @@ RSpec.describe "bundler/inline#gemfile" do
end
it "requires the gems" do
+ skip "gems not found" if Gem.win_platform?
+
script <<-RUBY
gemfile do
path "#{lib_path}" do
@@ -95,6 +97,8 @@ RSpec.describe "bundler/inline#gemfile" do
end
it "lets me use my own ui object" do
+ skip "prints just one CONFIRMED" if Gem.win_platform?
+
script <<-RUBY, :artifice => "endpoint"
require '#{lib_dir}/bundler'
class MyBundlerUI < Bundler::UI::Silent