class Rack::Test::Cookie

def expires

A Time value for when the cookie expires, if the expires option is set.
def expires
  Time.parse(@options['expires']) if @options['expires']
end