summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-30 17:48:16 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-30 17:55:20 +0100
commit82d29c78fa8b05379078100b87a4e761f2636cae (patch)
tree7ef936b08f9462cf6bfd925b8ac21c68a0bb5b49
parent5ba1360de631e2fabf2bfa998b104c4355c58b13 (diff)
downloadbundler-fix_realworld_test_helper.tar.gz
Fix some realworld specs testing nothingfix_realworld_test_helper
This helper was printing nothing to the standard output, so the specs were just checking if lockfiles contained the empty string, which is obviously true.
-rw-r--r--spec/realworld/edgecases_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/realworld/edgecases_spec.rb b/spec/realworld/edgecases_spec.rb
index 6468ee7f1e..d8997fdbdf 100644
--- a/spec/realworld/edgecases_spec.rb
+++ b/spec/realworld/edgecases_spec.rb
@@ -15,7 +15,7 @@ RSpec.describe "real world edgecases", :realworld => true, :sometimes => true do
raise "Could not find #{name} (#{requirement}) on rubygems.org!\n" \
"Found specs:\n\#{index.send(:specs).inspect}"
end
- "#{name} (\#{rubygem.version})"
+ puts "#{name} (\#{rubygem.version})"
RUBY
end