Sha256: 20fbc12a96671b0ca016f7ea667e289ca38a4399ff97d99bd4b2507eaaaad376

Contents?: true

Size: 962 Bytes

Versions: 41

Compression:

Stored size: 962 Bytes

Contents

require 'spec_helper'

describe FbGraph::Connections::Participants, '#participants' do
  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
    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
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
fb_graph-2.1.0.alpha spec/fb_graph/connections/participants_spec.rb
fb_graph-2.0.2 spec/fb_graph/connections/participants_spec.rb
fb_graph-2.0.1 spec/fb_graph/connections/participants_spec.rb
fb_graph-2.0.0 spec/fb_graph/connections/participants_spec.rb
fb_graph-2.0.0.beta spec/fb_graph/connections/participants_spec.rb
fb_graph-2.0.0.alpha spec/fb_graph/connections/participants_spec.rb
fb_graph-1.9.5 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.9.4 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.9.3 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.9.2 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.9.1 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.9.0 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.6 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.5 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.4 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.3 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.2 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.1 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.0 spec/fb_graph/connections/participants_spec.rb
fb_graph-1.8.0.alpha2 spec/fb_graph/connections/participants_spec.rb