Sha256: c177053b90cf193bbcff896448870e32dd045063d97cd6020c2448da168ea597
Contents?: true
Size: 1.08 KB
Versions: 7
Compression:
Stored size: 1.08 KB
Contents
require File.join(File.dirname(__FILE__), '../../spec_helper') context 'when included by FbGraph::User' do describe FbGraph::Connections::Links, '#links' do before(:all) 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 describe FbGraph::Connections::Links, '#link!' 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.' end end end
Version data entries
7 entries across 7 versions & 1 rubygems