Sha256: d10a828d9f7c4a41333aa3ffc1e4b99184b372ac5da3e7ce5f89eb124eba4f4f

Contents?: true

Size: 889 Bytes

Versions: 37

Compression:

Stored size: 889 Bytes

Contents

require 'spec_helper'

describe FbGraph2::Edge::Photos do
  context 'included in User' do
    let(:me) { FbGraph2::User.me('token') }

    describe '#photos' do
      it 'should return an Array of FbGraph2::Photo' do
        photos = mock_graph :get, 'me/photos', 'user/photos', access_token: 'token' do
          me.photos
        end
        photos.should be_instance_of FbGraph2::Edge
        photos.should_not be_blank
        photos.each do |photo|
          photo.should be_instance_of FbGraph2::Photo
        end
      end
    end

    describe 'photo!' do
      it 'should return FbGraph2::Post' do
        photo = mock_graph :post, 'me/photos', 'success_with_id', access_token: 'token' do
          me.photo! url: 'http://example.com/me.png'
        end
        photo.should be_instance_of FbGraph2::Photo
        photo.id.should == 'created_object_id'
      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/photos_spec.rb
fb_graph2-0.6.0 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.5.3 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.5.2 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.5.1 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.5.0 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.4.4 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.4.3 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.4.1 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.4.0 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.3.2 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.3.1 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.3.0 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.2.0 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.1.3 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.1.2 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.1.1 spec/fb_graph2/edge/photos_spec.rb