Sha256: d926bbe8c902b43e83bf5a6bd2feaf21f9971e56410f1a37f758b882acd3076b
Contents?: true
Size: 855 Bytes
Versions: 9
Compression:
Stored size: 855 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::Feed do context 'included in User' do let(:me) { FbGraph2::User.me('token') } describe '#feed' do it 'should return an Array of FbGraph2::Post' do posts = mock_graph :get, 'me/feed', 'user/feed', access_token: 'token' do me.feed end posts.should_not be_blank posts.each do |post| post.should be_instance_of FbGraph2::Post end end end describe '#feed!' do it 'should return FbGraph2::Post with posted params' do post = mock_graph :post, 'me/feed', 'success_with_id', access_token: 'token' do me.feed! message: 'hello' end post.should be_instance_of FbGraph2::Post post.id.should == 'created_object_id' post.message.should == 'hello' end end end end
Version data entries
9 entries across 9 versions & 1 rubygems