Sha256: 5105c495c46e0fa1c2169173e742558a31b4a5e718ba36f28a5a6f23978b4237

Contents?: true

Size: 837 Bytes

Versions: 9

Compression:

Stored size: 837 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_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

9 entries across 9 versions & 1 rubygems

Version Path
fb_graph2-0.1.0 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.11 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.10 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.9 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.8 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.7 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.6 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.5 spec/fb_graph2/edge/photos_spec.rb
fb_graph2-0.0.4 spec/fb_graph2/edge/photos_spec.rb