Class: PseudoExamplePending
- Inherits:
-
PseudoExample
- Object
- PseudoExample
- PseudoExamplePending
- 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
-
#initialize(description) ⇒ PseudoExamplePending
constructor
A new instance of PseudoExamplePending.
- #pending? ⇒ Boolean
Methods inherited from PseudoExample
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
12 13 14 |
# File 'lib/onlyoffice_tcm_helper/models/pseudo_example_pending.rb', line 12 def pending? true end |