test/near_test.rb in geocoder-1.1.6 vs test/near_test.rb in geocoder-1.1.7
- old
+ new
@@ -6,6 +6,38 @@
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]
end
+
+ def test_near_scope_options_with_defaults
+ result = Event.send(:near_scope_options, 1.0, 2.0, 5)
+
+ assert_match /AS distance/, result[:select]
+ assert_match /AS bearing/, result[:select]
+ assert_no_consecutive_comma(result[:select])
+ end
+
+ def test_near_scope_options_with_no_distance
+ result = Event.send(:near_scope_options, 1.0, 2.0, 5, :select_distance => false)
+
+ assert_no_match /AS distance/, result[:select]
+ assert_match /AS bearing/, result[:select]
+ assert_no_match /distance/, result[:condition]
+ assert_no_match /distance/, result[:order]
+ assert_no_consecutive_comma(result[:select])
+ end
+
+ def test_near_scope_options_with_no_bearing
+ result = Event.send(:near_scope_options, 1.0, 2.0, 5, :select_bearing => false)
+
+ assert_match /AS distance/, result[:select]
+ assert_no_match /AS bearing/, result[:select]
+ assert_no_consecutive_comma(result[:select])
+ end
+
+ private
+
+ def assert_no_consecutive_comma(string)
+ assert_no_match /, *,/, string, "two consecutive commas"
+ end
end