Sha256: 3083e7ff167571567599ae5df40f6237092ab3be94e7c5fe0dfca2003c63573c

Contents?: true

Size: 1.03 KB

Versions: 27

Compression:

Stored size: 1.03 KB

Contents

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

describe FbGraph::Connections::Groups, '#groups' do
  context 'when included by FbGraph::User' do
    before(:all) do
      fake_json(:get, 'matake/groups', 'users/groups/matake_public')
      fake_json(:get, 'matake/groups?access_token=access_token', 'users/groups/matake_private')
    end

    context 'when no access_token given' do
      it 'should raise FbGraph::Unauthorized' do
        lambda do
          FbGraph::User.new('matake').groups
        end.should raise_exception(FbGraph::Unauthorized)
      end
    end

    context 'when access_token is given' do
      it 'should return groups as FbGraph::Group' do
        groups = FbGraph::User.new('matake', :access_token => 'access_token').groups
        groups.first.should == FbGraph::Group.new(
          '115286585902',
          :access_token => 'access_token',
          :name => 'iPhone 3G S'
        )
        groups.each do |group|
          group.should be_instance_of(FbGraph::Group)
        end
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

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