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.

step_activated.rb 473 B

2 years ago
1234567891011121314151617181920
  1. # frozen_string_literal: true
  2. require 'cucumber/core/events'
  3. module Cucumber
  4. module Events
  5. # Event fired when a step is activated
  6. class StepActivated < Core::Event.new(:test_step, :step_match)
  7. # The test step that was matched.
  8. #
  9. # @return [Cucumber::Core::Test::Step]
  10. attr_reader :test_step
  11. # Information about the matching definition.
  12. #
  13. # @return [Cucumber::StepMatch]
  14. attr_reader :step_match
  15. end
  16. end
  17. end

No Description

Contributors (1)