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

Version Path
fb_graph-1.7.0 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.7.0.alpha2 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.9 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.7.0.alpha spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.8 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.7 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.5 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.4 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.3 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.2 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.1 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.6.0 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.5.5 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.5.4 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.5.3 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.5.2 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.5.1 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.5.0 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.4.1 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.4.0 spec/fb_graph/connections/participants_spec.rb