module Turnip::ExtraSteps::Support::StepFallback

Public Instance Methods

step(*args) click to toggle source
Calls superclass method
# File lib/turnip/extra_steps/support/step_fallback.rb, line 4
def step(*args)
  if defined?(super)
    super
  else
    When(*args)
  end
end