class Cucumber::Messages::PickleTableCell

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.deserializers.rb, line 739
def self.from_h(hash)
  return nil if hash.nil?

  self.new(
    value: hash[:value],
  )
end
new( value: '' ) click to toggle source
# File lib/cucumber/messages.dtos.rb, line 1295
def initialize(
  value: ''
)
  @value = value
end