Displaying 1 result from an estimated 1 matches for "spec_run_example_pend".
2008 Jul 08
1
Strange behaviour with pending specs and implementation_backtrace
...:name => example.description,
:example_group_name => @example_group.description,
:state => :pending,
:message => message,
:backtrace => example.implementation_backtrace
)
@remote_service.incoming(:spec_run_example_pending, spec)
end
end
If my code contains a pending example in test_spec.rb like this:
it ''should be pending'' do
pending
end
''example.implementation_backtrace'' contains the correct file path.
If I change the implementation to:
it ''should be pendin...