X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4b646e17a8c8246d1638bcece5d59369d78424e1..39cc056fa2e657a70e9fc0f107ae754842265b55:/test/lib/bounding_box_test.rb diff --git a/test/lib/bounding_box_test.rb b/test/lib/bounding_box_test.rb index 56c681aae..d82e2c9ae 100644 --- a/test/lib/bounding_box_test.rb +++ b/test/lib/bounding_box_test.rb @@ -223,7 +223,7 @@ class BoundingBoxTest < ActiveSupport::TestCase def test_complete assert_not @bbox_from_nils.complete?, "should contain a nil" - assert @bbox_from_string.complete?, "should not contain a nil" + assert_predicate @bbox_from_string, :complete?, "should not contain a nil" end def test_centre_lon @@ -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 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"] + assert_equal format("%.7f", :lon => @min_lon), bounds["minlon"] + assert_equal format("%.7f", :lat => @min_lat), bounds["minlat"] + assert_equal format("%.7f", :lon => @max_lon), bounds["maxlon"] + assert_equal format("%.7f", :lat => @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 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"] + assert_equal format("%.7f", :lon => @min_lon), bounds["min_lon"] + assert_equal format("%.7f", :lat => @min_lat), bounds["min_lat"] + assert_equal format("%.7f", :lon => @max_lon), bounds["max_lon"] + assert_equal format("%.7f", :lat => @max_lat), bounds["max_lat"] end def test_to_scaled