lib/cucumber/messages/rule_child.rb
# frozen_string_literal: true # The code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/codegen/codegen.rb] module Cucumber module Messages ## # Represents the RuleChild message in Cucumber's {message protocol}[https://github.com/cucumber/messages]. ## # # * # A child node of a `Rule` node ## class RuleChild < Message attr_reader :background attr_reader :scenario def initialize( background: nil, scenario: nil ) @background = background @scenario = scenario super() end ## # Returns a new RuleChild from the given hash. # If the hash keys are camelCased, they are properly assigned to the # corresponding snake_cased attributes. # # Cucumber::Messages::RuleChild.from_h(some_hash) # => #<Cucumber::Messages::RuleChild:0x... ...> ## def self.from_h(hash) return nil if hash.nil? new( background: Background.from_h(hash[:background]), scenario: Scenario.from_h(hash[:scenario]) ) end end end end