Displaying 1 result from an estimated 1 matches for "rspactor_formatter".
2008 Jul 08
1
Strange behaviour with pending specs and implementation_backtrace
Hi all,
I''m using my own OutputFormatter with /bin/spec to catch rspec results. I''m experiencing strange behaviour with pending specs and implementation_backtrace.
This is my example_pending implementation in rspactor_formatter.rb:
class RSpactorFormatter
def example_pending(example, message)
spec = SpecObject.new(
:name => example.description,
:example_group_name => @example_group.description,
:state => :pending,
:message => message,
:...