class Cucumber::Messages::PickleTableCell
Represents the PickleTableCell message in Cucumberโs message protocol.
Attributes
Public Class Methods
Source
# 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
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... ...>
Source
# File lib/cucumber/messages/pickle_table_cell.rb, line 13 def initialize( value: '' ) @value = value super() end
Calls superclass method