Sha256: 4a2b95748d8ecf5cf2531e4e5cfc6bbfadc7fbcb70759c2c218907edcf196c5c

Contents?: true

Size: 1.64 KB

Versions: 23

Compression:

Stored size: 1.64 KB

Contents

require File.join(File.dirname(__FILE__), '../spec_helper')

describe FbGraph::Connection, '.new' do
  before(:all) do
    fake_json(:get, 'platform/statuses?access_token=access_token', 'pages/statuses/platform_private')
  end

  it 'should return an array with connection info' do
    page = FbGraph::Page.new('platform', :access_token => 'access_token')
    statuses = page.statuses
    statuses.should be_kind_of(Array)
    statuses.collection.should be_kind_of(FbGraph::Collection)
    statuses.owner.should == page
    statuses.connection.should == :statuses
  end
end

describe FbGraph::Connection do
  before(:all) do
    fake_json(:get, 'me/home?access_token=access_token', 'users/home/me_private')
    fake_json(:get, 'me/home?limit=25&since=2010-04-27T13%3A06%3A14%2B0000&access_token=access_token', 'users/home/me_private_previous')
    fake_json(:get, 'me/home?limit=25&access_token=access_token&until=2010-04-27T11%3A07%3A48%2B0000', 'users/home/me_private_next')
  end

  it 'should be useful for pagenation' do
    me = FbGraph::User.new('me', :access_token => 'access_token')
    posts = me.home
    posts.first.created_time.should == Time.parse('2010-04-27T13:06:14+0000')
    posts.last.created_time.should  == Time.parse('2010-04-27T11:07:48+0000')
    previous_posts = posts.previous
    previous_posts.first.created_time.should == Time.parse('2010-04-27T13:23:08+0000')
    previous_posts.last.created_time.should  == Time.parse('2010-04-27T13:10:56+0000')
    next_posts = posts.next
    next_posts.first.created_time.should == Time.parse('2010-04-27T11:06:29+0000')
    next_posts.last.created_time.should  == Time.parse('2010-04-27T09:44:28+0000')
  end

end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
fb_graph-1.1.6 spec/fb_graph/connection_spec.rb
fb_graph-1.1.5 spec/fb_graph/connection_spec.rb
fb_graph-1.1.4 spec/fb_graph/connection_spec.rb
fb_graph-1.1.3 spec/fb_graph/connection_spec.rb
fb_graph-1.1.2 spec/fb_graph/connection_spec.rb
fb_graph-1.1.1 spec/fb_graph/connection_spec.rb
fb_graph-1.1.0 spec/fb_graph/connection_spec.rb
fb_graph-1.0.7 spec/fb_graph/connection_spec.rb
fb_graph-1.0.6 spec/fb_graph/connection_spec.rb
fb_graph-1.0.5 spec/fb_graph/connection_spec.rb
palidanx-fb_graph-1.0.4 spec/fb_graph/connection_spec.rb
fb_graph-1.0.4 spec/fb_graph/connection_spec.rb
fb_graph-1.0.3 spec/fb_graph/connection_spec.rb
fb_graph-1.0.2 spec/fb_graph/connection_spec.rb
fb_graph-1.0.1 spec/fb_graph/connection_spec.rb
fb_graph-1.0.0 spec/fb_graph/connection_spec.rb
fb_graph-0.8.0 spec/fb_graph/connection_spec.rb
fb_graph-0.7.3 spec/fb_graph/connection_spec.rb
fb_graph-0.7.2 spec/fb_graph/connection_spec.rb
fb_graph-0.7.1 spec/fb_graph/connection_spec.rb