Sha256: 1d556ca81725dcc5fa0b79060fd49e2fb1164434dc203fba0c46ac27dcfe0a65
Contents?: true
Size: 1.16 KB
Versions: 37
Compression:
Stored size: 1.16 KB
Contents
require File.join(File.dirname(__FILE__), '../../spec_helper') describe FbGraph::Connections::Links, '#links' do context 'when included by FbGraph::User' do before do fake_json(:get, 'matake/links?access_token=access_token', 'users/links/matake_private') end it 'should return notes as FbGraph::Link' do links = FbGraph::User.new('matake', :access_token => 'access_token').links links.each do |link| link.should be_instance_of(FbGraph::Link) end end end end describe FbGraph::Connections::Links, '#link!' do context 'when included by FbGraph::User' do before do fake_json(:post, 'matake/links', 'users/links/post_with_valid_access_token') end it 'should return generated link' do link = FbGraph::User.new('matake', :access_token => 'valid').link!( :link => 'http://github.com/nov/fb_graph', :message => 'A Ruby wrapper for Facebook Graph API.' ) link.identifier.should == 120765121284251 link.link.should == 'http://github.com/nov/fb_graph' link.message.should == 'A Ruby wrapper for Facebook Graph API.' link.access_token.should == 'valid' end end end
Version data entries
37 entries across 37 versions & 1 rubygems