Class: Cucumber::Events::BeforeTestStep
- Defined in:
- lib/cucumber/events/before_test_step.rb
Overview
Event fired before a test step is executed
Instance Attribute Summary collapse
-
#test_case ⇒ Cucumber::Core::Test::Case
readonly
The test case currently being executed.
-
#test_step ⇒ Cucumber::Core::Test::Step
readonly
The test step about to be executed.
Instance Attribute Details
#test_case ⇒ Cucumber::Core::Test::Case (readonly)
The test case currently being executed.
10 11 12 |
# File 'lib/cucumber/events/before_test_step.rb', line 10 def test_case @test_case end |
#test_step ⇒ Cucumber::Core::Test::Step (readonly)
The test step about to be executed.
15 16 17 |
# File 'lib/cucumber/events/before_test_step.rb', line 15 def test_step @test_step end |