From 38ab22ee7ca290d179ff2de10895f5b71b5a44b5 Mon Sep 17 00:00:00 2001 From: Michael Krasnyk Date: Mon, 11 Sep 2017 17:45:50 +0200 Subject: [PATCH] Sliproad case with a single intersection in a cross-road --- .../guidance/dedicated-turn-roads.feature | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/features/guidance/dedicated-turn-roads.feature b/features/guidance/dedicated-turn-roads.feature index dede9aab8..6cfaeb5dd 100644 --- a/features/guidance/dedicated-turn-roads.feature +++ b/features/guidance/dedicated-turn-roads.feature @@ -1023,3 +1023,31 @@ Feature: Slipways and Dedicated Turn Lanes When I route I should get | waypoints | route | turns | locations | | s,f | sab,dbcf,dbcf | depart,turn right,arrive | s,a,f | + + + @sliproads + Scenario: Sliproad with a single intersection in a cross-road + Given the node map + """ + d + . + s . a . b + ` . + ' c . g + .. + e + . + f + """ + + And the ways + | nodes | highway | name | oneway | + | sab | primary | sab | | + | dbcef | primary | dbcef | | + | ae | primary_link | ae | yes | + | cg | primary | cg | | + + + When I route I should get + | waypoints | route | turns | locations | + | s,f | sab,ae,dbcef,dbcef | depart,turn right,turn slight right,arrive | s,a,e,f |