Region name is no longer used for geocoding...

This commit is contained in:
echarp 2016-01-30 19:09:20 +01:00
parent 2104f145cf
commit bd55a2f911
1 changed files with 3 additions and 2 deletions

View File

@ -116,7 +116,8 @@ class EventTest < ActiveSupport::TestCase
test 'full address' do
@event.address = 'hello'
@event.city = 'world'
@event.region.name = 'all'
assert_equal 'hello, world, all', @event.full_address
# Region is no longer used for geocoding..;
# @event.region.name = 'all'
assert_equal 'hello, world', @event.full_address
end
end