Sha256: 27846cbd91d4774efe851625400fd4ba746a75f95897577581ae8c98f0f0d9ff
Contents?: true
Size: 551 Bytes
Versions: 8
Compression:
Stored size: 551 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::SharedPosts do context 'included in Post' do describe '#shared_posts' do let(:post) { FbGraph2::Post.new('post_id').authenticate('token') } it 'should return an Array of FbGraph2::Post' do posts = mock_graph :get, 'post_id/sharedposts', 'post/shared_posts', access_token: 'token' do post.shared_posts 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