From 4c8579b34019aa7a4892ee2b731b39973b4de7ba Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 25 Jun 2013 10:56:02 -0400 Subject: [PATCH] fixing test to actually test wanted behavior --- features/car/shuttle_train.feature | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/features/car/shuttle_train.feature b/features/car/shuttle_train.feature index ed2187c27..e58ffa210 100644 --- a/features/car/shuttle_train.feature +++ b/features/car/shuttle_train.feature @@ -3,23 +3,24 @@ Feature: Car - Handle ferryshuttle train routes Background: Given the profile "car" - + Scenario: Car - Use a ferry route Given the node map - | a | b | c | | | - | | | d | | | - | | | e | f | g | - + | a | b | c | | | | + | | | d | | | | + | | | e | f | g | h | + And the ways | nodes | highway | route | bicycle | | abc | primary | | | | cde | | shuttle_train | yes | | ef | primary | | | | fg | | ferry_man | | - + | gh | primary | | no | + When I route I should get | from | to | route | - | a | g | abc,cde,ef | + | a | f | abc,cde,ef | | b | f | abc,cde,ef | | e | c | cde | | e | b | cde,abc | @@ -27,5 +28,6 @@ Feature: Car - Handle ferryshuttle train routes | c | e | cde | | c | f | cde,ef | | f | g | | + | g | h | gh |