Sha256: 2eae684de11b646931027001621b0968eac51070d60ffafde9e6d00105d69635
Contents?: true
Size: 1.4 KB
Versions: 63
Compression:
Stored size: 1.4 KB
Contents
require 'spec_helper' describe FbGraph::Connections::Participants, '#participants' do it 'should return participants as FbGraph::User' do mock_graph :get, '12345/participants', 'thread/participants/private', :params => {:no_cache => 'true'}, :access_token => 'access_token' do participants = FbGraph::Thread.new(12345, :access_token => 'access_token').participants(:no_cache => true) participants.each do |participant| participant.should be_instance_of(FbGraph::User) end end end describe 'cached messages' do context 'when cached' do let(:thread) { FbGraph::Thread.new(12345, :access_token => 'access_token', :participants => {}) } it 'should use cache' do lambda do thread.participants end.should_not request_to '12345/participants?access_token=access_token' end context 'when options are specified' do it 'should not use cache' do lambda do thread.participants(:no_cache => true) end.should request_to '12345/participants?access_token=access_token&no_cache=true' end end end context 'otherwise' do let(:thread) { FbGraph::Thread.new(12345, :access_token => 'access_token') } it 'should not use cache' do lambda do thread.participants end.should request_to '12345/participants?access_token=access_token' end end end end
Version data entries
63 entries across 63 versions & 1 rubygems