Sha256: 8e3d836e209a97a409463f999c296253c4bffb25b78f6fee9f7c2fcf67c8c277

Contents?: true

Size: 784 Bytes

Versions: 8

Compression:

Stored size: 784 Bytes

Contents

require 'spec_helper'

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

    describe '#albums' do
      it 'should return an Array of FbGraph2::Video' do
        albums = mock_graph :get, 'me/albums', 'user/albums', access_token: 'token' do
          me.albums
        end
        albums.should_not be_blank
        albums.each do |album|
          album.should be_instance_of FbGraph2::Album
        end
      end
    end

    describe '#album!' do
      it do
        album = mock_graph :post, 'me/albums', 'success_with_id', access_token: 'token', params: {
          name: 'test'
        } do
          me.album! name: 'test'
        end
        album.should be_instance_of FbGraph2::Album
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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