test for u-turn at via point (failing)

This commit is contained in:
Emil Tin 2013-08-29 16:29:21 +02:00
parent 1d6e602473
commit 2211dfb741

View File

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