class Cucumber::Runtime

def with_hooks(scenario, skip_hooks=false)

def with_hooks(scenario, skip_hooks=false)
  around(scenario, skip_hooks) do
    before_and_after(scenario, skip_hooks) do
      yield scenario
    end
  end
end