Sha256: a67a28a88970d63b277c07aaa51c9c6d92af3ddd44e73f91c79606524da8b4eb
Contents?: true
Size: 533 Bytes
Versions: 35
Compression:
Stored size: 533 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::Posts do context 'included in User' do let(:me) { FbGraph2::User.me('token') } describe '#posts' do it 'should return an Array of FbGraph2::Post' do posts = mock_graph :get, 'me/posts', 'user/posts', access_token: 'token' do me.posts end posts.should be_instance_of FbGraph2::Edge posts.should_not be_blank posts.each do |post| post.should be_instance_of FbGraph2::Post end end end end end
Version data entries
35 entries across 35 versions & 1 rubygems