class Cucumber::Messages::PickleTableCell
Represents the PickleTableCell
message in Cucumber’s message protocol.
Attributes
value[R]
Public Class Methods
from_h(hash)
click to toggle source
Returns a new PickleTableCell
from the given hash. If the hash keys are camelCased, they are properly assigned to the corresponding snake_cased attributes.
Cucumber::Messages::PickleTableCell.from_h(some_hash) # => #<Cucumber::Messages::PickleTableCell:0x... ...>
# File lib/cucumber/messages/pickle_table_cell.rb, line 27 def self.from_h(hash) return nil if hash.nil? new( value: hash[:value] ) end
new( value: '' )
click to toggle source
Calls superclass method
# File lib/cucumber/messages/pickle_table_cell.rb, line 13 def initialize( value: '' ) @value = value super() end