1
0
Fork 0
mirror of https://github.com/simi/omniauth-facebook.git synced 2022-11-09 12:32:45 -05:00

Merge pull request #106 from vesan/fixes-image-url-test

Fixes image url test
This commit is contained in:
Mark Dodwell 2013-03-03 22:30:22 -08:00
commit 7c185387ae

View file

@ -121,7 +121,13 @@ class InfoTest < StrategyTestCase
@options = { :image_size => { :width => 123, :height => 987 } }
raw_info = { 'name' => 'Fred Smith', 'id' => '321' }
strategy.stubs(:raw_info).returns(raw_info)
assert_equal 'http://graph.facebook.com/321/picture?width=123&height=987', strategy.info['image']
image_url = strategy.info['image']
path, query = image_url.split("?")
query_params = Hash[*query.split("&").map {|pair| pair.split("=") }.flatten]
assert_equal 'http://graph.facebook.com/321/picture', path
assert_equal '123', query_params['width']
assert_equal '987', query_params['height']
end
end