module Cucumber::Glue::ProtoWorld

def pending(message = 'TODO')

Mark the matched step as pending.
def pending(message = 'TODO')
  raise Pending, message unless block_given?
  yield
rescue Exception
  raise Pending, message
end