class Cucumber::Messages::TableCell
Represents the TableCell
message in Cucumber’s message protocol.
A cell in a ‘TableRow`
Attributes
The location of the cell
The value of the cell
Public Class Methods
Source
# File lib/cucumber/messages.deserializers.rb, line 375 def self.from_h(hash) return nil if hash.nil? self.new( location: Location.from_h(hash[:location]), value: hash[:value], ) end
Returns a new TableCell
from the given hash. If the hash keys are camelCased, they are properly assigned to the corresponding snake_cased attributes.
Cucumber::Messages::TableCell.from_h(some_hash) # => #<Cucumber::Messages::TableCell:0x... ...>
Source
# File lib/cucumber/messages.dtos.rb, line 709 def initialize( location: Location.new, value: '' ) @location = location @value = value end