def test_satisfies_fail(self): country = Country() self.assertFalse(country.satisfies(Query()))
def test_satisfies(self): country = Country( country_code='DE', country_name='Germany', accuracy=100000.0) self.assertTrue(country.satisfies(Query()))