From bb227f7c0b3276cb6d7098de6b2b08eebff7473f Mon Sep 17 00:00:00 2001
From: Alex Reisner <alex@alexreisner.com>
Date: Thu, 25 Jul 2013 20:07:25 -0400
Subject: [PATCH] Add test for sanitized_text method with Array.

---
 test/query_test.rb | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/test/query_test.rb b/test/query_test.rb
index f79a598d..a7d588e9 100644
--- a/test/query_test.rb
+++ b/test/query_test.rb
@@ -44,4 +44,9 @@ class QueryTest < Test::Unit::TestCase
     assert !Geocoder::Query.new("127 Main St.").loopback_ip_address?
     assert !Geocoder::Query.new("John Doe\n127 Main St.\nAnywhere, USA").loopback_ip_address?
   end
+
+  def test_sanitized_text_with_array
+    q = Geocoder::Query.new([43.1313,11.3131])
+    assert_equal "43.1313,11.3131", q.sanitized_text
+  end
 end
-- 
GitLab