Class: Assert::Result::Skip

Inherits:
FromException show all
Defined in:
lib/assert/result.rb,
lib/assert/result.rb

Instance Attribute Summary

Attributes inherited from Base

#backtrace, #message, #test_name

Instance Method Summary collapse

Methods inherited from FromException

#initialize

Methods inherited from Base

#==, #initialize, #inspect, #trace

Constructor Details

This class inherits a constructor from Assert::Result::FromException

Instance Method Details

#skip?Boolean

Returns:

  • (Boolean)


149
# File 'lib/assert/result.rb', line 149

def skip?; true; end

#to_sObject



152
153
154
# File 'lib/assert/result.rb', line 152

def to_s
  "SKIP: #{super}"
end

#to_symObject



150
# File 'lib/assert/result.rb', line 150

def to_sym; :skipped; end