Sha256: 826da8e3727ebe1fc4da3156798c461d86b5eb1230383bb113454c2eef4868fc
Contents?: true
Size: 976 Bytes
Versions: 20
Compression:
Stored size: 976 Bytes
Contents
require File.join(File.dirname(__FILE__), '../../spec_helper') describe FbGraph::Connections::Participants, '#participants' do before do fake_json(:get, '12345/participants?access_token=access_token&no_cache=true', 'thread/participants/private') end it 'should use cached contents as default' do lambda do FbGraph::Thread.new(12345, :access_token => 'access_token').participants end.should_not request_to '12345/participants?access_token=access_token' end it 'should not use cached contents when options are specified' do lambda do FbGraph::Thread.new(12345).participants(:no_cache => true) end.should request_to '12345/participants?no_cache=true' end it 'should return participants as FbGraph::User' 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
Version data entries
20 entries across 20 versions & 1 rubygems