2012-09-30 08:40:59 -04:00
|
|
|
@routing @car @names
|
2012-10-01 07:27:08 -04:00
|
|
|
Feature: Car - Street names in instructions
|
2012-09-30 08:40:59 -04:00
|
|
|
|
2013-08-29 13:29:13 -04:00
|
|
|
Background:
|
|
|
|
Given the profile "car"
|
2012-02-21 05:51:42 -05:00
|
|
|
|
2013-08-29 13:29:13 -04:00
|
|
|
Scenario: Car - A named street
|
|
|
|
Given the node map
|
|
|
|
| a | b |
|
|
|
|
| | c |
|
2012-02-21 05:51:42 -05:00
|
|
|
|
2013-08-29 13:29:13 -04:00
|
|
|
And the ways
|
2015-05-30 13:03:44 -04:00
|
|
|
| nodes | name | ref |
|
|
|
|
| ab | My Way | |
|
|
|
|
| bc | Your Way | A1 |
|
2013-08-29 13:29:13 -04:00
|
|
|
|
|
|
|
When I route I should get
|
2016-03-31 19:39:31 -04:00
|
|
|
| from | to | route |
|
|
|
|
| a | c | My Way,Your Way (A1),Your Way (A1) |
|
2013-08-29 13:29:13 -04:00
|
|
|
|
|
|
|
@todo
|
|
|
|
Scenario: Car - Use way type to describe unnamed ways
|
|
|
|
Given the node map
|
|
|
|
| a | b | c | d |
|
|
|
|
|
|
|
|
And the ways
|
|
|
|
| nodes | highway | name |
|
|
|
|
| ab | tertiary | |
|
|
|
|
| bcd | residential | |
|
|
|
|
|
|
|
|
When I route I should get
|
2016-03-31 19:39:31 -04:00
|
|
|
| from | to | route |
|
|
|
|
| a | c | tertiary,residential,residential |
|