Class: Cucumber::Core::Test::Runner::RunningTestCase::Status::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/core/test/runner.rb

Direct Known Subclasses

Failing, Passing, Unknown

Instance Method Summary collapse

Constructor Details

#initialize(step_result) ⇒ Base

Returns a new instance of Base.



107
108
109
# File 'lib/cucumber/core/test/runner.rb', line 107

def initialize(step_result)
  @step_result = step_result
end

Instance Method Details

#execute(test_step, monitor) ⇒ Object



111
112
113
114
115
116
# File 'lib/cucumber/core/test/runner.rb', line 111

def execute(test_step, monitor, &)
  result = test_step.execute(monitor.result, &)
  result = result.with_message(%(Undefined step: "#{test_step.text}")) if result.undefined?
  result = result.with_appended_backtrace(test_step) unless test_step.hook?
  result.describe_to(monitor, result)
end

#resultObject

Raises:

  • (NoMethodError)


118
119
120
# File 'lib/cucumber/core/test/runner.rb', line 118

def result
  raise NoMethodError, 'Override me'
end