summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-09-13 13:51:31 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-09-15 15:32:05 +0200
commit4b922bb2018b7055f02b527974818a7a3b339da7 (patch)
treeb221387d508f53592189dea904ef042423b68efc
parent8e8af52e136ac2c4ff7227e0bff0836f5112a038 (diff)
downloadbundler-4b922bb2018b7055f02b527974818a7a3b339da7.tar.gz
Add some debugging info to error message
-rw-r--r--spec/support/matchers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index b0493801e8..d8e8c5cc4b 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -170,7 +170,7 @@ module Spec
end
R
rescue StandardError => e
- next "checking for #{name} failed:\n#{e}"
+ next "checking for #{name} failed:\n#{e}\n#{e.backtrace.join("\n")}"
end
next if out == "WIN"
next "expected #{name} to not be installed, but it was" if version.nil?