Adds failing tests for directional access overrides, discovered in #3345

This commit is contained in:
Daniel J. Hofmann 2016-11-29 12:04:59 +01:00 committed by Daniel J. H
parent 8a1afe456f
commit 98659fb0a0

View File

@ -220,3 +220,15 @@ Feature: Car - Restricted access
Then routability should be
| highway | toll | bothw |
| primary | yes | |
Scenario: Car - directional access tags
Then routability should be
| highway | access | access:forward | access:backward | forw | backw |
| primary | yes | yes | yes | x | x |
| primary | yes | | no | x | |
| primary | yes | no | | | x |
| primary | yes | no | no | | |
| primary | no | no | no | | |
| primary | no | | yes | | x |
| primary | no | yes | | x | |
| primary | no | yes | yes | x | x |