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/table_cell.rb, line 39 def self.from_h(hash) return nil if hash.nil? 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/table_cell.rb, line 23 def initialize( location: Location.new, value: '' ) @location = location @value = value super() end
Calls superclass method