class Cucumber::Events::StepActivated
Event fired when a step is activated
Attributes
Information about the matching definition.
@return [Cucumber::StepMatch]
The test step that was matched.
@return [Cucumber::Core::Test::Step]
Public Class Methods
Source
# File lib/cucumber/events/step_activated.rb, line 15 def self.event_id :step_activated end
Source
# File lib/cucumber/events/step_activated.rb, line 19 def initialize(test_step, step_match) @test_step = test_step @step_match = step_match super() end
Calls superclass method