Sha256: 6ed927c66668cfb96d78e36296473ce27861536b80bcd6fb2a57b3b5ab2d7a2f

Contents?: true

Size: 1.97 KB

Versions: 5

Compression:

Stored size: 1.97 KB

Contents

require 'spec_helper'

describe AngellistApi::Client::Follows,
  :vcr => { :cassette_name => 'follows' } do

  let(:client) { AngellistApi::Client.new }

  it 'gets follows in batch' do
    follows = client.get_follows([4067161, 4067147])
    follows.last.follower.angellist_url.should eq 'http://angel.co/danielle-morrill'
    follows.last.followed.angellist_url.should eq 'http://angel.co/newco'
  end

  it "gets a user's followers" do
    followers = client.get_user_followers(2850)
    followers.users.should be_an_instance_of Array
    followers.users.first.should be_an_instance_of Hashie::Mash
  end

  it "gets IDs of a user's followers" do
    followers = client.get_user_follower_ids(2850)
    followers.ids.should be_an_instance_of Array
    followers.ids.first.should be_an_instance_of Fixnum
  end

  it 'gets users a user is following' do
    following = client.get_user_following(2850)
    following.users.first.should have_key :bio
  end

  it 'gets startups a user is following' do
    following = client.get_user_following(2850, :type => :startup)
    following.startups.first.should have_key :product_desc
  end

  it 'gets IDs of users a user is following' do
    followers = client.get_user_following_ids(2850)
    followers.ids.should be_an_instance_of Array
    followers.ids.first.should be_an_instance_of Fixnum
  end

  it 'gets IDs of startups a user is following' do
    followers = client.get_user_following_ids(2850, :type => :startup)
    followers.ids.should be_an_instance_of Array
    followers.ids.first.should be_an_instance_of Fixnum
  end

  it "gets a startup's followers" do
    followers = client.get_startup_followers(1124)  # 500-startups-fund
    followers.users.should be_an_instance_of Array
    followers.users.first.should be_an_instance_of Hashie::Mash
  end

  it "gets a startup's follower IDs" do
    followers = client.get_startup_follower_ids(1124)
    followers.ids.should be_an_instance_of Array
    followers.ids.first.should be_an_instance_of Fixnum
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
angellist_api-1.0.7 spec/integration/follows_spec.rb
angellist_api-1.0.6 spec/integration/follows_spec.rb
angellist_api-1.0.5 spec/integration/follows_spec.rb
angellist_api-1.0.4 spec/integration/follows_spec.rb
angellist_api-1.0.3 spec/integration/follows_spec.rb