Source code for geometry.unittests.misc_tests


from geometry import map_hat, hat_map

from .utils import GeoTestCase, directions_sequence


[docs]class UtilsTests(GeoTestCase):
[docs] def hat_test(self): self.check_conversion(directions_sequence(), hat_map, map_hat)