class Cucumber::Messages::FeatureChild
Represents the FeatureChild message in Cucumber’s message protocol.
A child node of a ‘Feature` node
Attributes
Public Class Methods
Source
# File lib/cucumber/messages/feature_child.rb, line 37 def self.from_h(hash) return nil if hash.nil? new( rule: Rule.from_h(hash[:rule]), background: Background.from_h(hash[:background]), scenario: Scenario.from_h(hash[:scenario]) ) end
Returns a new FeatureChild from the given hash. If the hash keys are camelCased, they are properly assigned to the corresponding snake_cased attributes.
Cucumber::Messages::FeatureChild.from_h(some_hash) # => #<Cucumber::Messages::FeatureChild:0x... ...>
Source
# File lib/cucumber/messages/feature_child.rb, line 19 def initialize( rule: nil, background: nil, scenario: nil ) @rule = rule @background = background @scenario = scenario super() end
Calls superclass method