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