-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: .travis.yml
- Loading branch information
Showing
4 changed files
with
70 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@routing @bicycle @roundabout @instruction | ||
Feature: Roundabout Instructions | ||
|
||
Background: | ||
Given the profile "bicycle" | ||
|
||
Scenario: Bicycle - Roundabout instructions | ||
Given the node map | ||
| | | v | | | | ||
| | | d | | | | ||
| s | a | | c | u | | ||
| | | b | | | | ||
| | | t | | | | ||
|
||
And the ways | ||
| nodes | junction | | ||
| sa | | | ||
| tb | | | ||
| uc | | | ||
| vd | | | ||
| abcda | roundabout | | ||
|
||
When I route I should get | ||
| 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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@routing @car @roundabout @instruction | ||
Feature: Roundabout Instructions | ||
|
||
Background: | ||
Given the profile "car" | ||
|
||
Scenario: Car - Roundabout instructions | ||
Given the node map | ||
| | | v | | | | ||
| | | d | | | | ||
| s | a | | c | u | | ||
| | | b | | | | ||
| | | t | | | | ||
|
||
And the ways | ||
| nodes | junction | | ||
| sa | | | ||
| tb | | | ||
| uc | | | ||
| vd | | | ||
| abcda | roundabout | | ||
|
||
When I route I should get | ||
| 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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ef1d75d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wonder why the roundabout stuff got bundled with this commit. but oh well
ef1d75d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, something fishy happened. I had to manually clean up. It appears to be fine now.