fixes 2219

This commit is contained in:
Moritz Kobitzsch
2016-04-05 13:27:15 +02:00
committed by Patrick Niklaus
parent 849baea544
commit 470d7600b8
3 changed files with 21 additions and 2 deletions
+19
View File
@@ -85,3 +85,22 @@ Feature: Basic Map Matching
| trace | matchings |
| dcba | hgfe |
Scenario: Testbot - Matching with oneway streets
Given a grid size of 10 meters
Given the node map
| a | b | c | d |
| e | f | g | h |
And the ways
| nodes | oneway |
| ab | yes |
| bc | yes |
| cd | yes |
| hg | yes |
| gf | yes |
| fe | yes |
When I match I should get
| trace | matchings |
| dcba | hg,gf,fe |
| efgh | ab,bc,cd |