Sha256: e1d8f70b4376860d668b0705bcfab635131e1db3568c80f2cb1152528f8047ba
Contents?: true
Size: 387 Bytes
Versions: 4
Compression:
Stored size: 387 Bytes
Contents
require 'spec_helper' describe FbGraph::Connections::Inbox, '#inbox' do it 'should return threads as FbGraph::Thread' do mock_graph :get, 'me/threads', 'users/inbox/me_private', :access_token => 'access_token' do threads = FbGraph::User.me('access_token').inbox threads.each do |thread| thread.should be_instance_of(FbGraph::Thread) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems