cuke test roundabout exit nr

This commit is contained in:
Emil Tin
2013-07-30 17:58:00 +02:00
parent cb28b2de07
commit a45215ddf2
3 changed files with 25 additions and 21 deletions
+11 -11
View File
@@ -6,11 +6,11 @@ Feature: Roundabout Instructions
Scenario: Bicycle - Roundabout instructions
Given the node map
| | | t | | |
| | | b | | |
| s | a | | c | u |
| | | d | | |
| | | v | | |
| | | d | | |
| s | a | | c | u |
| | | b | | |
| | | t | | |
And the ways
| nodes | junction |
@@ -21,10 +21,10 @@ Feature: Roundabout Instructions
| abcda | roundabout |
When I route I should get
| from | to | route | turns |
| s | v | sa,vd | head,enter_roundabout,destination |
| s | u | sa,uc | head,enter_roundabout,destination |
| s | t | sa,tb | head,enter_roundabout,destination |
| u | t | uc,tb | head,enter_roundabout,destination |
| u | s | uc,sa | head,enter_roundabout,destination |
| u | v | uc,vd | head,enter_roundabout,destination |
| from | to | route | turns |
| s | t | sa,tb | head,enter_roundabout-1,destination |
| s | u | sa,uc | head,enter_roundabout-2,destination |
| s | v | sa,vd | head,enter_roundabout-3,destination |
| u | v | uc,vd | head,enter_roundabout-1,destination |
| u | s | uc,sa | head,enter_roundabout-2,destination |
| u | t | uc,tb | head,enter_roundabout-3,destination |