Sha256: bbbcec4a0e66dc408224ca6e23617477a8a0cacc1b874c5fdcc9796e8db72ea2

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

require 'spec_helper'

describe FbGraph::Connections::FormerParticipants, '#former_participants' do
  before do
    fake_json(:get, '12345/former_participants?access_token=access_token&no_cache=true', 'thread/former_participants/private')
  end

  it 'should use cached contents as default' do
    lambda do
      FbGraph::Thread.new(12345, :access_token => 'access_token').former_participants
    end.should_not request_to '12345/former_participants?access_token=access_token'
  end

  it 'should not use cached contents when options are specified' do
    lambda do
      FbGraph::Thread.new(12345).former_participants(:no_cache => true)
    end.should request_to '12345/former_participants?no_cache=true'
  end

  it 'should return former_participants as FbGraph::User' do
    former_participants = FbGraph::Thread.new(12345, :access_token => 'access_token').former_participants(:no_cache => true)
    former_participants.each do |former_participant|
      former_participant.should be_instance_of(FbGraph::User)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fb_graph-1.7.1 spec/fb_graph/connections/former_participants_spec.rb