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.
102
103
104
|
# File 'lib/cucumber/core/test/runner.rb', line 102
def initialize(step_result)
@step_result = step_result
end
|
Instance Method Details
#execute(test_step, monitor, &continue) ⇒ Object
106
107
108
109
110
111
|
# File 'lib/cucumber/core/test/runner.rb', line 106
def execute(test_step, monitor, &continue)
result = test_step.execute(monitor.result, &continue)
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
113
114
115
|
# File 'lib/cucumber/core/test/runner.rb', line 113
def result
raise NoMethodError, 'Override me'
end
|