spec/spec_helper.rb in pry-moves-1.0.2 vs spec/spec_helper.rb in pry-moves-1.0.3
- old
+ new
@@ -10,15 +10,16 @@
config.include PryDebugger::Breakpoints
config.before(:example) do
PryMoves.unlock if PryMoves.semaphore.locked?
+ PryMoves.step_in_everywhere = false
end
config.after(:example) do |example|
unless example.exception
expect(PryDebugger.breakpoints.count).to be(0),
- "not all breakpoints launched: #{PryDebugger.breakpoints.count}"
+ "not all breakpoints launched, left to launch: #{PryDebugger.breakpoints.count}. All following specs may fail."
end
end
end
\ No newline at end of file