Exception: Cucumber::Core::Test::Result::Skipped

Inherits:
Raisable
  • Object
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

Constructor Details

This class inherits a constructor from Cucumber::Core::Test::Result::Raisable

Instance Method Details

#describe_to(visitor, *args) ⇒ Object



165
166
167
168
169
# File 'lib/cucumber/core/test/result.rb', line 165

def describe_to(visitor, *args)
  visitor.skipped(*args)
  visitor.duration(duration, *args)
  self
end

#ok?(be_strict = false) ⇒ Boolean

Returns:

  • (Boolean)


175
176
177
# File 'lib/cucumber/core/test/result.rb', line 175

def ok?(be_strict = false)
  true
end

#to_sObject



171
172
173
# File 'lib/cucumber/core/test/result.rb', line 171

def to_s
  "-"
end