Class: Cucumber::Core::Test::Runner::RunningTestCase::Status::Base
- Inherits:
-
Object
- Object
- Cucumber::Core::Test::Runner::RunningTestCase::Status::Base
show all
- Defined in:
- lib/cucumber/core/test/runner.rb
Instance Method Summary
collapse
Constructor Details
#initialize(step_result) ⇒ Base
Returns a new instance of Base.
214
215
216
|
# File 'lib/cucumber/core/test/runner.rb', line 214
def initialize(step_result)
@step_result = step_result
end
|
Instance Method Details
#execute(test_step, monitor) ⇒ Object
218
219
220
221
222
223
|
# File 'lib/cucumber/core/test/runner.rb', line 218
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
|
#result ⇒ Object
225
226
227
|
# File 'lib/cucumber/core/test/runner.rb', line 225
def result
raise NoMethodError, 'Override me'
end
|
#step_result_message ⇒ Object
229
230
231
|
# File 'lib/cucumber/core/test/runner.rb', line 229
def step_result_message
step_result.to_message
end
|