Sha256: 8ba15ff40b30f038d1d685655eeddf5d765741c5d99b638a2524fcc638f188d9
Contents?: true
Size: 906 Bytes
Versions: 28
Compression:
Stored size: 906 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 be_instance_of FbGraph2::Edge 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
28 entries across 28 versions & 1 rubygems