From dd8b4cc13d8e052d0fac7a25569f869470198256 Mon Sep 17 00:00:00 2001 From: Alban Peignier Date: Thu, 15 Mar 2018 18:23:32 +0100 Subject: Avoid error when distance or time cost is ignored. Refs #6203 --- spec/lib/route_way_cost_unit_converter_spec.rb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'spec') diff --git a/spec/lib/route_way_cost_unit_converter_spec.rb b/spec/lib/route_way_cost_unit_converter_spec.rb index 624ef5052..3c5e51710 100644 --- a/spec/lib/route_way_cost_unit_converter_spec.rb +++ b/spec/lib/route_way_cost_unit_converter_spec.rb @@ -10,6 +10,10 @@ RSpec.describe RouteWayCostUnitConverter do '94435-97513' => { 'distance' => 35919, 'time' => 6174 + }, + '2-3' => { + 'distance' => nil, + 'time' => nil } } @@ -17,12 +21,16 @@ RSpec.describe RouteWayCostUnitConverter do RouteWayCostUnitConverter.convert(costs) ).to eq({ '1-2' => { - 'distance' => 35.22, + 'distance' => 35, 'time' => 93 }, '94435-97513' => { - 'distance' => 35.92, + 'distance' => 35, 'time' => 102 + }, + '2-3' => { + 'distance' => 0, + 'time' => 0 } }) end -- cgit v1.2.3