Sha256: 9042b1410a6beb69a7ef99f8a03a6cb3dac00d9f69fabe0ec0f4fedd83492975
Contents?: true
Size: 429 Bytes
Versions: 20
Compression:
Stored size: 429 Bytes
Contents
require File.join(File.dirname(__FILE__), '../../spec_helper') describe FbGraph::Connections::Threads, '#threads' do before do fake_json(:get, 'me/threads?access_token=access_token', 'users/threads/me_private') end it 'should return threads as FbGraph::Thread' do threads = FbGraph::User.me('access_token').threads threads.each do |thread| thread.should be_instance_of(FbGraph::Thread) end end end
Version data entries
20 entries across 20 versions & 1 rubygems