Sha256: c0b9bf1c31e9ce5351ad59d7a27d61a47f2f4f6de75d16bdf6fd80db5d6c22d9

Contents?: true

Size: 1.16 KB

Versions: 7

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(: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
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

7 entries across 7 versions & 1 rubygems

Version Path
fb_graph-1.1.6 spec/fb_graph/connections/links_spec.rb
fb_graph-1.1.5 spec/fb_graph/connections/links_spec.rb
fb_graph-1.1.4 spec/fb_graph/connections/links_spec.rb
fb_graph-1.1.3 spec/fb_graph/connections/links_spec.rb
fb_graph-1.1.2 spec/fb_graph/connections/links_spec.rb
fb_graph-1.1.1 spec/fb_graph/connections/links_spec.rb
fb_graph-1.1.0 spec/fb_graph/connections/links_spec.rb