enable testing of way names, including ways with empty or missing name tags

This commit is contained in:
Emil Tin
2012-02-21 11:51:42 +01:00
parent 15f2b21b62
commit 0984a669ce
4 changed files with 81 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
@routing @utf
Feature: Basic Routing
Scenario: Streetnames with UTF characters
Given the nodes
| a | b | c | d |
And the ways
| nodes | name |
| ab | Scandinavian København |
| bc | Japanese |
| cd | Cyrillic Москва |
When I route I should get
| from | to | route |
| a | b | Scandinavian København |
| b | c | Japanese |
| c | d | Cyrillic Москва |