Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_coords_from_query_ws():
assert coords_from_query("-100 40") == (-100, 40)
def test_coords_from_query_csv():
assert coords_from_query("-100, 40") == (-100, 40)
def test_coords_from_query_json():
assert coords_from_query("[-100, 40]") == (-100, 40)