From c669d46efbc9213f1206445da8b8c912057c982d Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Thu, 12 Apr 2012 16:47:43 +0200 Subject: [PATCH] ignore 'You have reached your destination' when parsing route instructions in cucumber tests --- features/support/route.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/route.rb b/features/support/route.rb index 097233e07..87ba77caa 100644 --- a/features/support/route.rb +++ b/features/support/route.rb @@ -61,7 +61,7 @@ def route_status response end def way_list instructions - instructions. + instructions.reject { |r| r[0]=='You have reached your destination' }. map { |r| r[1] }. map { |r| r=="" ? '""' : r }. join(',')