class Rack::Test::Cookie

def <=>(other)

Order cookies by name, path, and domain.
def <=>(other)
  [name, path, domain.reverse] <=> [other.name, other.path, other.domain.reverse]
end