Sha256: af88497966918b621f343cebaf894e36cddba57c8db5655530fe34b95db0798c

Contents?: true

Size: 482 Bytes

Versions: 8

Compression:

Stored size: 482 Bytes

Contents

require 'spec_helper'

describe FbGraph2::Edge::Links do
  context 'included in User' do
    let(:me) { FbGraph2::User.me('token') }
    describe '#links' do
      it 'should return an Array of FbGraph2::Post' do
        posts = mock_graph :get, 'me/links', 'user/links', access_token: 'token' do
          me.links
        end
        posts.should_not be_blank
        posts.each do |post|
          post.should be_instance_of FbGraph2::Post
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fb_graph2-0.1.0 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.11 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.10 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.9 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.8 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.7 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.6 spec/fb_graph2/edge/links_spec.rb
fb_graph2-0.0.5 spec/fb_graph2/edge/links_spec.rb