Class: PseudoExamplePending

Inherits:
PseudoExample show all
Defined in:
lib/onlyoffice_tcm_helper/models/pseudo_example_pending.rb

Overview

class is describe object like RSpec::Core::Example with pending result

Instance Attribute Summary

Attributes inherited from PseudoExample

#description, #execution_result

Instance Method Summary collapse

Methods inherited from PseudoExample

#exception, #metadata

Constructor Details

#initialize(description) ⇒ PseudoExamplePending

Returns a new instance of PseudoExamplePending.



7
8
9
10
# File 'lib/onlyoffice_tcm_helper/models/pseudo_example_pending.rb', line 7

def initialize(description)
  super(description)
  @execution_result = ExecutingResultPending.new
end

Instance Method Details

#pending?Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/onlyoffice_tcm_helper/models/pseudo_example_pending.rb', line 12

def pending?
  true
end