Sha256: 59c2fc3242f008592738071196b12c0e202db0e49defa6f31f5ca6d2f7a896e8
Contents?: true
Size: 510 Bytes
Versions: 11
Compression:
Stored size: 510 Bytes
Contents
module Cucumber module Events # Event fired before a test step is executed class BeforeTestStep # The test case currently being executed. # # @return [Cucumber::Core::Test::Case] attr_reader :test_case # The test step about to be executed. # # @return [Cucumber::Core::Test::Step] attr_reader :test_step # @private def initialize(test_case, test_step) @test_case, @test_step = test_case, test_step end end end end
Version data entries
11 entries across 11 versions & 2 rubygems