class Cucumber::Core::Test::IsStepVisitor
Public Class Methods
new(test_step)
click to toggle source
# File lib/cucumber/core/test/step.rb, line 57 def initialize(test_step) @is_step = false test_step.describe_to(self) end
Public Instance Methods
method_missing(*)
click to toggle source
# File lib/cucumber/core/test/step.rb, line 70 def method_missing(*) self end
step?()
click to toggle source
# File lib/cucumber/core/test/step.rb, line 62 def step? @is_step end
test_step(*)
click to toggle source
# File lib/cucumber/core/test/step.rb, line 66 def test_step(*) @is_step = true end