summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-08-11 15:54:36 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-08-11 15:54:36 -0500
commit81ac44b393076af91d4fb5cc3fab04f2b55c0b1f (patch)
treedb224c71a0e2eb3de8960a2265c020fc74480f3e
parentc5429e95bb9b667d058fb18c561edad4d756e711 (diff)
downloadbundler-seg-fix-realworld.tar.gz
Scrub STDOUT output from the main specsseg-fix-realworld
-rw-r--r--spec/resolver/basic_spec.rb1
-rw-r--r--spec/runtime/setup_spec.rb2
2 files changed, 1 insertions, 2 deletions
diff --git a/spec/resolver/basic_spec.rb b/spec/resolver/basic_spec.rb
index 48224ae7af..b7b8b4c3b8 100644
--- a/spec/resolver/basic_spec.rb
+++ b/spec/resolver/basic_spec.rb
@@ -213,7 +213,6 @@ describe "Resolving" do
it "will not revert to a previous version in strict mode level patch" do
pending "possible issue with molinillo - needs further research"
- ENV["DEBUG_RESOLVER"] = "true"
should_conservative_resolve_and_include [:patch, :strict], [], %w(foo-1.4.3 bar-2.1.1)
end
diff --git a/spec/runtime/setup_spec.rb b/spec/runtime/setup_spec.rb
index 56ffd6ccab..eab66e2ee2 100644
--- a/spec/runtime/setup_spec.rb
+++ b/spec/runtime/setup_spec.rb
@@ -926,7 +926,7 @@ describe "Bundler.setup" do
s.write "bar.gemspec", "require 'foobarbaz'"
end.ref_for("HEAD")
bundle :install
- puts out
+
expect(out.lines.map(&:chomp)).to include(
a_string_starting_with("[!] There was an error while loading `bar.gemspec`:"),
RUBY_VERSION >= "1.9" ? a_string_starting_with("Does it try to require a relative path? That's been removed in Ruby 1.9.") : "",