spec/fullcontact_spec.rb in fullcontact-0.12.0 vs spec/fullcontact_spec.rb in fullcontact-0.13.0
- old
+ new
@@ -27,16 +27,9 @@
a_get("person.json")
.with(:query => {:apiKey => "api_key", :email => "brawest@gmail.com"})
.should have_been_made
end
- it "should strip the timeoutSeconds parameter" do
- FullContact.person(email: "brawest@gmail.com", timeoutSeconds: 30)
- a_get("person.json")
- .with(:query => {:apiKey => "api_key", :email => "brawest@gmail.com"})
- .should have_been_made
- end
-
it "should return the same results as a client by email" do
FullContact.person(:email => "brawest@gmail.com").should == FullContact::Client.new.person(:email => "brawest@gmail.com")
end
it "should return the same results as a client by twitter" do