class Cucumber::Events::StepActivated

Event fired when a step is activated

Attributes

step_match[R]

Information about the matching definition.

@return [Cucumber::StepMatch]

test_step[R]

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

Public Class Methods

new(test_step, step_match) click to toggle source

@private

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