Sha256: 9800c73fc3ce16743e46c49886fee346b86d5a432a4f7ebd276171656c2a4168
Contents?: true
Size: 548 Bytes
Versions: 29
Compression:
Stored size: 548 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::Statuses do context 'included in User' do let(:me) { FbGraph2::User.me('token') } describe '#statuses' do it 'should return an Array of FbGraph2::Post' do posts = mock_graph :get, 'me/statuses', 'user/statuses', access_token: 'token' do me.statuses 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
29 entries across 29 versions & 1 rubygems