Sha256: c2b431b36b8b843a9a90e65d05a3316e22a79acfbb55373f32b7addd1c94618b

Contents?: true

Size: 741 Bytes

Versions: 10

Compression:

Stored size: 741 Bytes

Contents

require File.join(File.dirname(__FILE__), "..", "spec_helper.rb")

module Crunchbase
  describe FundingRound do

    describe "advanced indexing" do
      before(:all) do
        @all_funding_rounds = FundingRound.lists_for_permalink("facebook")
      end

      it "check the return results is correct" do
        @all_funding_rounds.per_page.should == 1000
        @all_funding_rounds.current_page.should == 1
        @all_funding_rounds.size.should == 11
        @all_funding_rounds.items.count.should == 11
      end
    end
    
    it "should pull from web api" do
      funding_round = FundingRound.get("37bd05f961af726ba3c1b279da842805")

      funding_round.permalink.should == '37bd05f961af726ba3c1b279da842805'
    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
crunchbase_v2-1.0.0 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.9 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.8 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.7 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.6 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.5 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.4 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.3 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.2 spec/crunchbase/funding_round_spec.rb
crunchbase_v2-0.0.1 spec/crunchbase/funding_round_spec.rb