Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is a short question: I am looking for a way to run specs in debug mode, with the -u switch, so that RSpec would drop to console whenever it failed, without having to add a debugger line into the code. Any pointers?

share|improve this question

2 Answers

up vote 10 down vote accepted

Will answer my own question.

Following this tutorial, I created a custom formatter, as in:

require "spec/runner/formatter/specdoc_formatter"

class DebuggerFormatter < Spec::Runner::Formatter::SpecdocFormatter
  def example_failed(example, counter, failure)
    super
    debugger if Kernel.respond_to?(:debugger)
  end
end
share|improve this answer

hakanensari, your code seems to break inside rspec. It'd be nice if we could break at the failing assert line.

share|improve this answer
2  
This is old, RSpec1.3-era code. – Hakan Ensari Dec 1 '10 at 14:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.