Exception: Cucumber::Core::Test::Result::Skipped
- Inherits:
-
Raisable
- Object
- StandardError
- Raisable
- Cucumber::Core::Test::Result::Skipped
show all
- Defined in:
- lib/cucumber/core/test/result.rb
Instance Attribute Summary
Attributes inherited from Raisable
#duration, #message
Instance Method Summary
collapse
Methods inherited from Raisable
#initialize, #with_appended_backtrace, #with_duration, #with_filtered_backtrace, #with_message
Instance Method Details
#describe_to(visitor, *args) ⇒ Object
160
161
162
163
164
|
# File 'lib/cucumber/core/test/result.rb', line 160
def describe_to(visitor, *args)
visitor.skipped(*args)
visitor.duration(duration, *args)
self
end
|
#ok?(be_strict = false) ⇒ Boolean
170
171
172
|
# File 'lib/cucumber/core/test/result.rb', line 170
def ok?(be_strict = false)
true
end
|
#to_s ⇒ Object
166
167
168
|
# File 'lib/cucumber/core/test/result.rb', line 166
def to_s
"-"
end
|