Skip to content
Snippets Groups Projects
Commit 926467f1 authored by Matthew Landauer's avatar Matthew Landauer
Browse files

Make near_scope_options private again

parent bd876fec
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,8 @@ module Geocoder::Store
end
end
private # ----------------------------------------------------------------
##
# Get options hash suitable for passing to ActiveRecord.find to get
# records within a radius (in kilometers) of the given point.
......@@ -120,8 +122,6 @@ module Geocoder::Store
}
end
private # ----------------------------------------------------------------
##
# SQL for calculating distance based on the current database's
# capabilities (trig functions?).
......
......@@ -3,7 +3,7 @@ require 'test_helper'
class NearTest < Test::Unit::TestCase
def test_near_scope_options_without_sqlite_includes_bounding_box_condition
result = Event.near_scope_options(1.0, 2.0, 5)
result = Event.send(:near_scope_options, 1.0, 2.0, 5)
assert_match /test_table_name.latitude BETWEEN 0.9276\d* AND 1.0723\d* AND test_table_name.longitude BETWEEN 1.9276\d* AND 2.0723\d* AND /,
result[:conditions][0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment