You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_step_created.rb 289 B

2 years ago
123456789101112
  1. # frozen_string_literal: true
  2. require 'cucumber/core/events'
  3. module Cucumber
  4. module Events
  5. # Event fired when a TestStep is created from a PickleStep
  6. class TestStepCreated < Core::Event.new(:test_step, :pickle_step)
  7. attr_reader :test_step, :pickle_step
  8. end
  9. end
  10. end

No Description

Contributors (1)