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