From 04c3a737ef1b4deeb492568c4ece984fd0817a31 Mon Sep 17 00:00:00 2001 From: Michael Krasnyk Date: Fri, 16 Feb 2018 22:24:18 +0100 Subject: [PATCH] Test for a ramp bifurcation obviousness --- features/guidance/motorway.feature | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/features/guidance/motorway.feature b/features/guidance/motorway.feature index c683664c8a0..c452bc101bb 100644 --- a/features/guidance/motorway.feature +++ b/features/guidance/motorway.feature @@ -299,3 +299,22 @@ Feature: Motorway Guidance | waypoints | route | turns | | a,e | abcde,abcde | depart,arrive | | a,g | abcde,bfg,bfg | depart,off ramp slight right,arrive | + + + Scenario: Ramp Bifurcations should not be suppressed + Given the node map + """ + /-----------c + a---b------------d + """ + + And the ways + | nodes | highway | name | destination | + | ab | motorway_link | | | + | bc | motorway_link | | City 17 | + | bd | motorway_link | | Ravenholm | + + When I route I should get + | waypoints | route | turns | + | a,c | ,, | depart,turn slight left,arrive | + | a,d | , | depart,arrive |