mark some tests as @todo

This commit is contained in:
Emil Tin
2012-12-10 13:08:26 +01:00
parent e41d52570e
commit b0f035bf3c
4 changed files with 16 additions and 37 deletions
+2 -1
View File
@@ -113,7 +113,8 @@ Feature: Bike - Handle ferry routes
| from | to | route | time |
| a | g | abcdefg | 23400s +-1 |
| g | a | abcdefg | 23400s +-1 |
@todo
Scenario: Bike - Ferry duration, individual parts
Given the node map
| x | y | | z | | | v |
+4 -16
View File
@@ -19,26 +19,14 @@ Feature: Bike - Street names in instructions
| a | c | My Way,Your Way |
Scenario: Bike - Use way type to describe unnamed ways
Given the node map
| a | b | c |
And the ways
| nodes | highway | name |
| ab | cycleway | |
| bc | track | |
When I route I should get
| from | to | route |
| a | c | cycleway,track |
Scenario: Bike - Don't create instructions for every node of unnamed ways
Given the node map
| a | b | c | d |
And the ways
| nodes | highway | name |
| abcd | cycleway | |
| ab | cycleway | |
| bcd | track | |
When I route I should get
| from | to | route |
| a | d | cycleway |
| from | to | route |
| a | d | cycleway,track |