spec/crunchbase/location_spec.rb in crunchbase_v2-1.0.0 vs spec/crunchbase/location_spec.rb in crunchbase_v2-1.1.0
- old
+ new
@@ -1,16 +1,14 @@
require File.join(File.dirname(__FILE__), "..", "spec_helper.rb")
module Crunchbase
- describe Location do
+ describe Location, :vcr do
+ subject { Location.list(1) }
- it "return location lists" do
- results = Location.list(1)
+ it_has_behavior 'pagination'
- results.per_page.should == 1000
- results.current_page.should == 1
-
- puts results.items.first(3).inspect
- end
+ # it "return location lists" do
+ # puts results.items.first(3).inspect
+ # end
end
end