aboutsummaryrefslogtreecommitdiffstats
path: root/spec/lib/tom_tom_spec.rb
diff options
context:
space:
mode:
authorTeddy Wing2018-03-12 11:46:03 +0100
committerTeddy Wing2018-03-14 16:38:39 +0100
commitaf4e70fc1c0ef7d74429b0a6507182a6b34ec721 (patch)
treef771e99cd85eebf5b5d7b1d30db5cf6e5ef8fc1c /spec/lib/tom_tom_spec.rb
parentb55fcf26a4b71ad79737bc2a0d291f6ce6944dec (diff)
downloadchouette-core-af4e70fc1c0ef7d74429b0a6507182a6b34ec721.tar.bz2
Revert "TomTom: Add method for `calculateRoute` endpoint"
This reverts commit f28a4b2c5b348bc12b455aa0cd76a9513103aea7. As stated in that commit, I'm going to use the `/batch` endpoint instead of `/calculateRoute` because I know that's already working.
Diffstat (limited to 'spec/lib/tom_tom_spec.rb')
-rw-r--r--spec/lib/tom_tom_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/lib/tom_tom_spec.rb b/spec/lib/tom_tom_spec.rb
index c6d387b9f..57f22d26a 100644
--- a/spec/lib/tom_tom_spec.rb
+++ b/spec/lib/tom_tom_spec.rb
@@ -22,23 +22,4 @@ RSpec.describe TomTom do
])
end
end
-
- describe "#convert_way_costs_for_calculate_route" do
- it "turns WayCost points into a string of colon-separated coordinates" do
- way_costs = [
- WayCost.new(
- departure: Geokit::LatLng.new(48, 2),
- arrival: Geokit::LatLng.new(46, 3)
- ),
- WayCost.new(
- departure: Geokit::LatLng.new(46, 3),
- arrival: Geokit::LatLng.new(47.2, 3.9)
- )
- ]
-
- expect(
- tomtom.convert_way_costs_for_calculate_route(way_costs)
- ).to eq('48,2:46,3:47.2,3.9')
- end
- end
end