cucumber: change syntax of node maps

This commit is contained in:
Emil Tin
2016-09-30 09:33:08 +02:00
committed by Moritz Kobitzsch
parent d47d03c15b
commit 7cbb1807e7
112 changed files with 3926 additions and 2564 deletions
+99 -59
View File
@@ -7,9 +7,11 @@ Feature: Fork Instructions
Scenario: Fork Same Road Class
Given the node map
| | | | | c |
| a | | b | | |
| | | | | d |
"""
c
a b
d
"""
And the ways
| nodes | highway |
@@ -24,9 +26,11 @@ Feature: Fork Instructions
Scenario: Don't Fork On Single Road
Given the node map
| | | | | c |
| a | | b | | |
| | | | | d |
"""
c
a b
d
"""
And the ways
| nodes | highway | oneway |
@@ -40,8 +44,10 @@ Feature: Fork Instructions
Scenario: Don't Fork On Single Road
Given the node map
| | | | | | | c |
| a | | b | | d | | |
"""
c
a b d
"""
And the ways
| nodes | highway | oneway | name |
@@ -55,9 +61,11 @@ Feature: Fork Instructions
Scenario: Do not fork on link type
Given the node map
| | | | | c |
| a | | b | | |
| | | | | d |
"""
c
a b
d
"""
And the ways
| nodes | highway |
@@ -72,9 +80,11 @@ Feature: Fork Instructions
Scenario: Fork in presence of other roads
Given the node map
| | | | | c |
| a | | b | | |
| | e | | | d |
"""
c
a b
e d
"""
And the ways
| nodes | highway |
@@ -90,10 +100,12 @@ Feature: Fork Instructions
Scenario: Fork Turning Slight Left
Given the node map
| | | | | | c |
| | | | | | |
| a | | b | | | |
| | | | | d | |
"""
c
a b
d
"""
And the ways
| nodes | highway |
@@ -108,10 +120,12 @@ Feature: Fork Instructions
Scenario: Fork Turning Slight Right
Given the node map
| | | | | c | |
| a | | b | | | |
| | | | | | |
| | | | | | d |
"""
c
a b
d
"""
And the ways
| nodes | highway |
@@ -126,9 +140,11 @@ Feature: Fork Instructions
Scenario: Do not fork on service
Given the node map
| | | | | c |
| a | | b | | |
| | | | | d |
"""
c
a b
d
"""
And the ways
| nodes | highway |
@@ -142,9 +158,11 @@ Feature: Fork Instructions
Scenario: Fork Both Turning Slight Right
Given the node map
| a | | b | | | |
| | | | | | c |
| | | | | | d |
"""
a b
c
d
"""
And the ways
| nodes | highway |
@@ -159,9 +177,11 @@ Feature: Fork Instructions
Scenario: Fork Both Turning Slight Left
Given the node map
| | | | | | c |
| | | | | | d |
| a | | b | | | |
"""
c
d
a b
"""
And the ways
| nodes | highway |
@@ -176,9 +196,11 @@ Feature: Fork Instructions
Scenario: Fork Both Turning Slight Right - Unnamed
Given the node map
| a | | b | | | |
| | | | | | c |
| | | | | | d |
"""
a b
c
d
"""
And the ways
| nodes | highway | name |
@@ -193,9 +215,11 @@ Feature: Fork Instructions
Scenario: Fork Both Turning Slight Left - Unnamed
Given the node map
| | | | | | c |
| | | | | | d |
| a | | b | | | |
"""
c
d
a b
"""
And the ways
| nodes | highway | name |
@@ -210,9 +234,11 @@ Feature: Fork Instructions
Scenario: Fork Both Turning Very Slightly Right - Unnamed
Given the node map
| a | | b | | | | | | | | | | | | | | | |
| | | | | | | | | | | | c | | | | | | |
| | | | | | | | | | | | | | | | | | d |
"""
a b
c
d
"""
And the ways
| nodes | highway | name |
@@ -227,9 +253,11 @@ Feature: Fork Instructions
Scenario: Fork Both Turning Very Slightly Right - Unnamed Ramps
Given the node map
| a | | b | | | | | | | | | | | | | | | |
| | | | | | | | | | | | c | | | | | | |
| | | | | | | | | | | | | | | | | | d |
"""
a b
c
d
"""
And the ways
| nodes | highway | name |
@@ -244,9 +272,11 @@ Feature: Fork Instructions
Scenario: Non-Fork on complex intersection - left
Given the node map
| | | | | c |
| a | | b | | |
| | e | | | d |
"""
c
a b
e d
"""
And the ways
| nodes | highway |
@@ -261,9 +291,11 @@ Feature: Fork Instructions
Scenario: Non-Fork on complex intersection - right
Given the node map
| | e | | | c |
| a | | b | | |
| | | | | d |
"""
e c
a b
d
"""
And the ways
| nodes | highway |
@@ -278,9 +310,11 @@ Feature: Fork Instructions
Scenario: Tripple fork
Given the node map
| | | | | | | | | c |
| a | | b | | d | | | | |
| | | | | | | | | e |
"""
c
a b d
e
"""
And the ways
| nodes | highway |
@@ -297,9 +331,11 @@ Feature: Fork Instructions
Scenario: Tripple fork -- middle obvious
Given the node map
| | | | | c |
| a | | b | | d |
| | | | | e |
"""
c
a b d
e
"""
And the ways
| nodes | highway |
@@ -315,8 +351,10 @@ Feature: Fork Instructions
Scenario: Don't Fork when leaving Road
Given the node map
| a | | b | | c |
| | | | | d |
"""
a b c
d
"""
And the ways
| nodes | highway |
@@ -330,8 +368,10 @@ Feature: Fork Instructions
Scenario: Fork on motorway links - don't fork on through
Given the node map
| i | | | | | a |
| j | | c | b | | x |
"""
i a
j c b x
"""
And the ways
| nodes | name | highway |