Sha256: 3a364305f528c44e3749b8a92351fa5822f2afaa88675e8765f54a7c9b0083a4
Contents?: true
Size: 600 Bytes
Versions: 11
Compression:
Stored size: 600 Bytes
Contents
module Cucumber # Events tell you what's happening while Cucumber runs your features. # # They're designed to be read-only, appropriate for writing formatters and other # output tools. If you need to be able to influence the result of a scenario, use a hook instead. # # To subscribe to an event, use {Cucumber::Configuration#on_event} # # @example # AfterConfiguration do |config| # config.on_event :after_test_step do |event| # puts event.result # end # end module Events end end Dir[File.dirname(__FILE__) + '/events/*.rb'].map(&method(:require))
Version data entries
11 entries across 11 versions & 2 rubygems