Flowdock
method

step_failed

Importance_0
step_failed(type, description, *args) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/runner/formatter/story/plain_text_formatter.rb, line 149
          def step_failed(type, description, *args)
            found_step(type, description, true, @scenario_pending, *args)
            if @scenario_pending
              @scenario_body_text +=  yellow(" (SKIPPED)")
            else
              @scenario_body_text +=  red(@scenario_ok ? " (FAILED)" : " (SKIPPED)")
            end
            @scenario_ok = false
          end
Register or log in to add new notes.