class Cucumber::Tcl::StepDefinitions::ExecuteResponse

Public Class Methods

new(raw) click to toggle source
# File lib/cucumber/tcl/step_definitions.rb, line 32
def initialize(raw)
  @raw = raw
end

Public Instance Methods

raise_any_pending_error() click to toggle source
# File lib/cucumber/tcl/step_definitions.rb, line 36
def raise_any_pending_error
  if @raw == "pending"
    raise Cucumber::Core::Test::Result::Pending.new("TODO: Step not yet implemented")
  end
end