Class: Cucumber::Value::ValueResults
- Inherits:
-
Hash
- Object
- Hash
- Cucumber::Value::ValueResults
- Defined in:
- lib/cucumber/value/value_results.rb
Overview
Instance Method Summary collapse
-
#output ⇒ Object
Outputs whether value was delivered for each feature stored in the Hash.
Instance Method Details
#output ⇒ Object
Outputs whether value was delivered for each feature stored in the Hash
6 7 8 9 10 |
# File 'lib/cucumber/value/value_results.rb', line 6 def output self.each_pair do | feature, delivered | puts feature + " : "+ ( delivered ? "Delivered" : "Not delivered" ) end end |