class Cucumber::Events::StepMatch

Event fired when a step is matched to a definition

Attributes

step_match[R]

 Information about the matching definition.

@return [Cucumber::StepMatch]
test_step[R]

 The test step that was matched.

@return [Cucumber::Core::Test::Step]

Public Class Methods

new(test_step, step_match) click to toggle source

 @private

# File lib/cucumber/events/step_match.rb, line 18
def initialize(test_step, step_match)
  @test_step, @step_match = test_step, step_match
end