From 98659fb0a0a36f1fa69390e9bd2d204dbcd7ee1e Mon Sep 17 00:00:00 2001 From: "Daniel J. Hofmann" Date: Tue, 29 Nov 2016 12:04:59 +0100 Subject: [PATCH] Adds failing tests for directional access overrides, discovered in #3345 --- features/car/access.feature | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/features/car/access.feature b/features/car/access.feature index e46590c49..7e8ce674c 100644 --- a/features/car/access.feature +++ b/features/car/access.feature @@ -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 |