class Cucumber::Value::ValueResults
@author Colin Humphreys
Public Instance Methods
output()
click to toggle source
Outputs whether value was delivered for each feature stored in the Hash
# 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