test showing failure to unpack route with u-turns at both ends

This commit is contained in:
Moritz Kobitzsch 2016-11-24 11:19:10 +01:00
parent 1ba5ff44cc
commit 3721f8c887

View File

@ -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 |