module Cucumber::Messages::TimeConversion

def timestamp_to_time(timestamp)

def timestamp_to_time(timestamp)
  Time.at(timestamp['seconds'] + timestamp['nanos'].to_f / NANOSECONDS_PER_SECOND)
end