Sha256: e79ed2e84806e55bb6eca4cf31f3d132e9c7c5a92ed20e35afe5f30c7d99e350

Contents?: true

Size: 535 Bytes

Versions: 37

Compression:

Stored size: 535 Bytes

Contents

require 'spec_helper'

describe FbGraph2::Edge::Books do
  context 'included in User' do
    describe '#books' do
      let(:me) { FbGraph2::User.me('token') }
      it 'should return an Array of FbGraph2::Page' do
        pages = mock_graph :get, 'me/books', 'user/books', access_token: 'token' do
          me.books
        end
        pages.should be_instance_of FbGraph2::Edge
        pages.should_not be_blank
        pages.each do |page|
          page.should be_instance_of FbGraph2::Page
        end
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
fb_graph2-0.6.1 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.6.0 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.5.3 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.5.2 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.5.1 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.5.0 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.4.4 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.4.3 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.4.1 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.4.0 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.3.2 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.3.1 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.3.0 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.2.0 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.1.3 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.1.2 spec/fb_graph2/edge/books_spec.rb
fb_graph2-0.1.1 spec/fb_graph2/edge/books_spec.rb