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_case_ready.rb 293 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 Test::Case is ready to be ran (matching has been done, hooks added etc)
  6. class TestCaseReady < Core::Event.new(:test_case)
  7. attr_reader :test_case
  8. end
  9. end
  10. end

No Description

Contributors (1)