Nominatim/test/bdd/steps/check_functions.py
2021-01-03 17:21:24 +01:00

13 lines
264 B
Python

"""
Collection of assertion functions used for the steps.
"""
class Almost:
def __init__(self, value, offset=0.00001):
self.value = value
self.offset = offset
def __eq__(self, other):
return abs(other - self.value) < self.offset