class Cucumber::Events::TestStepStarted
Signals that a {Cucumber::Core::Test::Step} is about to be executed
Attributes
@return [Cucumber::Core::Test::Step] the test step to be executed
Public Class Methods
Source
# File lib/cucumber/events/test_step_started.rb, line 12 def self.event_id :test_step_started end
Source
# File lib/cucumber/events/test_step_started.rb, line 16 def initialize(test_step) @test_step = test_step super() end
Calls superclass method