cleanup indentation of cuke files

This commit is contained in:
Emil Tin
2013-08-29 19:29:13 +02:00
parent 58b7ef8431
commit b5bfdb56dc
63 changed files with 4486 additions and 4509 deletions
+28 -28
View File
@@ -1,33 +1,33 @@
@routing @car @names
Feature: Car - Street names in instructions
Background:
Given the profile "car"
Scenario: Car - A named street
Given the node map
| a | b |
| | c |
And the ways
| nodes | name |
| ab | My Way |
| bc | Your Way |
When I route I should get
| from | to | route |
| a | c | My Way,Your Way |
@todo
Scenario: Car - Use way type to describe unnamed ways
Given the node map
| a | b | c | d |
Background:
Given the profile "car"
And the ways
| nodes | highway | name |
| ab | tertiary | |
| bcd | residential | |
Scenario: Car - A named street
Given the node map
| a | b |
| | c |
When I route I should get
| from | to | route |
| a | c | tertiary,residential |
And the ways
| nodes | name |
| ab | My Way |
| bc | Your Way |
When I route I should get
| from | to | route |
| a | c | My Way,Your Way |
@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
| from | to | route |
| a | c | tertiary,residential |