From 3721f8c8872b17f0b1d00f8ccffe78dfbca21c94 Mon Sep 17 00:00:00 2001 From: Moritz Kobitzsch Date: Thu, 24 Nov 2016 11:19:10 +0100 Subject: [PATCH] test showing failure to unpack route with u-turns at both ends --- features/testbot/via.feature | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/features/testbot/via.feature b/features/testbot/via.feature index e1716bd33..bc5ba7348 100644 --- a/features/testbot/via.feature +++ b/features/testbot/via.feature @@ -327,3 +327,19 @@ Feature: Via points When I route I should get | waypoints | route | | a,b,e | | + + @todo @3359 + Scenario: U-Turn In Bearings + Given the node map + """ + a 1 b + """ + + And the ways + | nodes | + | ab | + + When I route I should get + | waypoints | bearings | route | turns | + | 1,a | 90,2 270,2 | ab,ab,ab | depart,turn uturn,arrive | + | 1,b | 270,2 90,2 | ab,ab,ab | depart,turn uturn,arrive |