Sha256: f407d7e4accc08deffb5d764b30a3101dd745ec4ea16d3c39832b19d5be53187
Contents?: true
Size: 1.63 KB
Versions: 6
Compression:
Stored size: 1.63 KB
Contents
require File.join(File.dirname(__FILE__), '../../spec_helper') describe FbGraph::Connections::Friends, '#friends' do context 'when included by FbGraph::User' do before(:all) do fake_json(:get, 'me/friends', 'users/friends/me_public') fake_json(:get, 'me/friends?access_token=access_token', 'users/friends/me_private') fake_json(:get, 'arjun/friends', 'users/friends/arjun_public') fake_json(:get, 'arjun/friends?access_token=access_token', 'users/friends/arjun_private') end context 'when no access_token given' do it 'should raise FbGraph::Exception' do lambda do FbGraph::User.new('arjun').friends end.should raise_exception(FbGraph::Exception) end end context 'when identifier is not me' do it 'should raise FbGraph::Exception' do lambda do FbGraph::User.new('arjun', :access_token => 'access_token').friends end.should raise_exception(FbGraph::Exception) end end context 'when identifier is me and no access_token is given' do it 'should raise FbGraph::NotFound' do lambda do FbGraph::User.new('me').friends end.should raise_exception(FbGraph::NotFound) end end context 'when identifier is me and access_token is given' do it 'should return friends as FbGraph::User' do users = FbGraph::User.new('me', :access_token => 'access_token').friends users.first.should == FbGraph::User.new( '6401', :name => 'Kirk McMurray' ) users.each do |user| user.should be_instance_of(FbGraph::User) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems