X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5b33f3f8e31c62bc3e5db1d5b120533c3afdde68..6027c42ee7b5ac6b36e8a62135d2cf67b3ca8250:/test/lib/bounding_box_test.rb diff --git a/test/lib/bounding_box_test.rb b/test/lib/bounding_box_test.rb index dda8b0e67..46ff38c9a 100644 --- a/test/lib/bounding_box_test.rb +++ b/test/lib/bounding_box_test.rb @@ -151,7 +151,7 @@ class BoundingBoxTest < ActiveSupport::TestCase def test_good_bbox_boundaries @good_bbox.each do |bbox_string| - assert_nothing_raised(OSM::APIBadBoundingBox) { BoundingBox.from_s(bbox_string).check_boundaries } + assert_nothing_raised { BoundingBox.from_s(bbox_string).check_boundaries } end end @@ -196,14 +196,14 @@ class BoundingBoxTest < ActiveSupport::TestCase def test_good_bbox_size @good_bbox.each do |bbox_string| - assert_nothing_raised(OSM::APIBadBoundingBox) { BoundingBox.from_s(bbox_string).check_size } + assert_nothing_raised { BoundingBox.from_s(bbox_string).check_size } end end def test_size_to_big @bad_big_bbox.each do |bbox_string| bbox = nil - assert_nothing_raised(OSM::APIBadBoundingBox) { bbox = BoundingBox.from_bbox_params(:bbox => bbox_string).check_boundaries } + assert_nothing_raised { bbox = BoundingBox.from_bbox_params(:bbox => bbox_string).check_boundaries } exception = assert_raise(OSM::APIBadBoundingBox) { bbox.check_size } assert_equal(@size_error_message, exception.message) end @@ -222,7 +222,7 @@ class BoundingBoxTest < ActiveSupport::TestCase end def test_complete - assert !@bbox_from_nils.complete?, "should contain a nil" + assert_not @bbox_from_nils.complete?, "should contain a nil" assert @bbox_from_string.complete?, "should not contain a nil" end @@ -265,19 +265,19 @@ class BoundingBoxTest < ActiveSupport::TestCase def test_add_bounds_to_no_underscore bounds = @bbox_from_string.add_bounds_to({}) assert_equal 4, bounds.size - assert_equal @min_lon.to_s, bounds["minlon"] - assert_equal @min_lat.to_s, bounds["minlat"] - assert_equal @max_lon.to_s, bounds["maxlon"] - assert_equal @max_lat.to_s, bounds["maxlat"] + assert_equal format("%.7f", @min_lon), bounds["minlon"] + assert_equal format("%.7f", @min_lat), bounds["minlat"] + assert_equal format("%.7f", @max_lon), bounds["maxlon"] + assert_equal format("%.7f", @max_lat), bounds["maxlat"] end def test_add_bounds_to_with_underscore bounds = @bbox_from_string.add_bounds_to({}, "_") assert_equal 4, bounds.size - assert_equal @min_lon.to_s, bounds["min_lon"] - assert_equal @min_lat.to_s, bounds["min_lat"] - assert_equal @max_lon.to_s, bounds["max_lon"] - assert_equal @max_lat.to_s, bounds["max_lat"] + assert_equal format("%.7f", @min_lon), bounds["min_lon"] + assert_equal format("%.7f", @min_lat), bounds["min_lat"] + assert_equal format("%.7f", @max_lon), bounds["max_lon"] + assert_equal format("%.7f", @max_lat), bounds["max_lat"] end def test_to_scaled @@ -306,7 +306,7 @@ class BoundingBoxTest < ActiveSupport::TestCase def check_expand(bbox, array_string, margin = 0, result = nil) array = array_string.split(",").collect(&:to_f) - result = array unless result + result ||= array bbox.expand!(BoundingBox.new(array[0], array[1], array[2], array[3]), margin) check_bbox(bbox, result) end