From 2211dfb741e8986709dafeaedfd5f9a4b21b4044 Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Thu, 29 Aug 2013 16:29:21 +0200 Subject: [PATCH] test for u-turn at via point (failing) --- features/testbot/via.feature | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/features/testbot/via.feature b/features/testbot/via.feature index 5ba8baca0..342d4c4ef 100644 --- a/features/testbot/via.feature +++ b/features/testbot/via.feature @@ -50,3 +50,21 @@ Feature: Via points When I route I should get | waypoints | route | | a,c,f,h | ab,bcd,de,efg,gh | + + @bug @todo + Scenario: U-turn should be allowed at via point + Given the node map + | a | b | c | + | | d | | + | | e | | + + And the ways + | nodes | + | abc | + | bd | + | de | + + When I route I should get + | waypoints | route | + | a,d,c | abc,bd,bd,abc | +