class Cucumber::Messages::PickleTableRow

Attributes

cells[R]

Public Class Methods

from_h(hash) click to toggle source

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... ...>
# File lib/cucumber/messages.deserializers.rb, line 758
def self.from_h(hash)
  return nil if hash.nil?

  self.new(
    cells: hash[:cells]&.map { |item| PickleTableCell.from_h(item) },
  )
end
new( cells: [] ) click to toggle source
# File lib/cucumber/messages.dtos.rb, line 1313
def initialize(
  cells: []
)
  @cells = cells
end