class Cucumber::Events::StepActivated
Event fired when a step is activated
Attributes
Information about the matching definition.
@return [Cucumber::StepMatch]
@return [Cucumber::Core::Test::Step]
Public Class Methods
Source
# File lib/cucumber/events/step_activated.rb, line 20 def initialize(test_step, step_match) @test_step = test_step @step_match = step_match end
@private