class Cucumber::Events::TestStepCreated
Event fired when a TestStep is created from a PickleStep
Attributes
Public Class Methods
Source
# File lib/cucumber/events/test_step_created.rb, line 11 def self.event_id :test_step_created end
Source
# File lib/cucumber/events/test_step_created.rb, line 15 def initialize(test_step, pickle_step) @test_step = test_step @pickle_step = pickle_step super() end
Calls superclass method