class Cucumber::Messages::PickleTableRow
Represents the PickleTableRow message in Cucumberโs message protocol.
Attributes
Public Class Methods
Source
# File lib/cucumber/messages/pickle_table_row.rb, line 27 def self.from_h(hash) return nil if hash.nil? new( cells: hash[:cells]&.map { |item| PickleTableCell.from_h(item) } ) end
Returns a new PickleTableRow from the given hash. If the hash keys are camelCased, they are properly assigned to the corresponding snake_cased attributes.
Cucumber::Messages::PickleTableRow.from_h(some_hash) # => #<Cucumber::Messages::PickleTableRow:0x... ...>
Source
# File lib/cucumber/messages/pickle_table_row.rb, line 13 def initialize( cells: [] ) @cells = cells super() end
Calls superclass method