Sha256: 3787615d7b45b583c17f18a888c231aa0056442dca21f2546aa2ad26d895761c
Contents?: true
Size: 622 Bytes
Versions: 37
Compression:
Stored size: 622 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::FriendLists do context 'included in User' do describe '#friend_lists' do let(:me) { FbGraph2::User.me('token') } it 'should return an Array of FbGraph2::FriendList' do friend_lists = mock_graph :get, 'me/friendlists', 'user/friend_lists', access_token: 'token' do me.friend_lists end friend_lists.should be_instance_of FbGraph2::Edge friend_lists.should_not be_blank friend_lists.each do |friend_list| friend_list.should be_instance_of FbGraph2::FriendList end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems