class Cucumber::Core::Test::IsStepVisitor

Public Class Methods

new(test_step) click to toggle source
# File lib/cucumber/core/test/step.rb, line 66
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 79
def method_missing(*)
  self
end
step?() click to toggle source
# File lib/cucumber/core/test/step.rb, line 71
def step?
  @is_step
end
test_step(*) click to toggle source
# File lib/cucumber/core/test/step.rb, line 75
def test_step(*)
  @is_step = true
end