Skip to content
Snippets Groups Projects
Commit a666cfd1 authored by Joe Francis's avatar Joe Francis
Browse files
parent e3d30107
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,10 @@ class YandexTest < GeocoderTestCase
"Some Intersection",
:bounds => [[40.0, -120.0], [39.0, -121.0]]
))
assert_match(/bbox=40.0+%2C-120.0+%7E39.0+%2C-121.0+/, url)
if RUBY_VERSION < '2.5.0'
assert_match(/bbox=40.0+%2C-120.0+%7E39.0+%2C-121.0+/, url)
else
assert_match(/bbox=40.0+%2C-120.0+~39.0+%2C-121.0+/, url)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment