Sha256: ee3e3b53464e808a95f2dd60abe20d93ff33f60160a1adb3f26a4006bf529a95
Contents?: true
Size: 1.24 KB
Versions: 9
Compression:
Stored size: 1.24 KB
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 context 'with location' do it 'should convert place_id to Place object' do post = mock_graph :post, 'me/feed', 'success_with_id', access_token: 'token' do me.feed! place: 'place_id' end post.place.should be_instance_of FbGraph2::Place post.place.id.should == 'place_id' end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems