Sha256: 5f0149d66d1ec6b24a3dcd81b5b5dc804930b2fe2067ae68440441a4034ab363
Contents?: true
Size: 677 Bytes
Versions: 26
Compression:
Stored size: 677 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::Inbox do context 'included in User' do describe '#inbox' do let(:me) { FbGraph2::User.me('token') } it 'should return an Array of FbGraph2::Thread' do threads = mock_graph :get, 'me/inbox', 'user/inbox', access_token: 'token' do me.inbox end threads.should be_instance_of FbGraph2::Edge threads.should_not be_blank threads.each do |thread| thread.should be_instance_of FbGraph2::Thread end threads.summary.should include unseen_count: 0, unread_count: 0, updated_time: Time.parse('2014-09-02T03:51:40+0000') end end end end
Version data entries
26 entries across 26 versions & 1 rubygems