Class: Background
- Includes:
- Sapphire::Testing::Executable
- Defined in:
- lib/sapphire/DSL/Scenarios/background.rb
Instance Attribute Summary collapse
-
#and ⇒ Object
readonly
Returns the value of attribute and.
-
#block ⇒ Object
readonly
Returns the value of attribute block.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#results ⇒ Object
readonly
Returns the value of attribute results.
-
#text ⇒ Object
readonly
Returns the value of attribute text.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
- #add_and(pre, text, &block) ⇒ Object
- #AddResult(result) ⇒ Object
-
#initialize(parent, pre, text, &block) ⇒ Background
constructor
A new instance of Background.
Methods included from Sapphire::Testing::Executable
Constructor Details
#initialize(parent, pre, text, &block) ⇒ Background
Returns a new instance of Background.
11 12 13 14 15 16 17 18 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 11 def initialize(parent, pre, text, &block) @block = block @value = text @text = pre + text.to_s @parent = parent @results = [] @and = [] end |
Instance Attribute Details
#and ⇒ Object (readonly)
Returns the value of attribute and.
9 10 11 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 9 def and @and end |
#block ⇒ Object (readonly)
Returns the value of attribute block.
6 7 8 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 6 def block @block end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
7 8 9 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 7 def parent @parent end |
#results ⇒ Object (readonly)
Returns the value of attribute results.
8 9 10 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 8 def results @results end |
#text ⇒ Object (readonly)
Returns the value of attribute text.
5 6 7 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 5 def text @text end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
4 5 6 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 4 def value @value end |
Instance Method Details
#add_and(pre, text, &block) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 26 def add_and(pre, text, &block) if(self.value.is_a? Pending) self.and << And.new(self, Pending.new(pre + text), &block) elsif(self.value.is_a? Broken) self.and << And.new(self, Broken.new(pre + text), &block) else self.and << And.new(self, pre + text, &block) end end |
#AddResult(result) ⇒ Object
20 21 22 23 24 |
# File 'lib/sapphire/DSL/Scenarios/background.rb', line 20 def AddResult(result) result.item = self @results << result self.parent.result.AddChild(result) end |