spec/constantcontact/services/contact_service_spec.rb in constantcontact-3.0.0 vs spec/constantcontact/services/contact_service_spec.rb in constantcontact-4.0.0
- old
+ new
@@ -15,11 +15,11 @@
describe "#get_contacts" do
it "returns an array of contacts" do
json = load_file('contacts_response.json')
net_http_resp = Net::HTTPResponse.new(1.0, 200, 'OK')
- response = RestClient::Response.create(json, net_http_resp, {}, @request)
+ response = RestClient::Response.create(json, net_http_resp, @request)
RestClient.stub(:get).and_return(response)
contacts = ConstantContact::Services::ContactService.new(@client).get_contacts()
contact = contacts.results[0]
contacts.should be_kind_of(ConstantContact::Components::ResultSet)
@@ -30,11 +30,11 @@
describe "#get_contact" do
it "returns a contact" do
json = load_file('contact_response.json')
net_http_resp = Net::HTTPResponse.new(1.0, 200, 'OK')
- response = RestClient::Response.create(json, net_http_resp, {}, @request)
+ response = RestClient::Response.create(json, net_http_resp, @request)
RestClient.stub(:get).and_return(response)
contact = ConstantContact::Services::ContactService.new(@client).get_contact(1)
contact.should be_kind_of(ConstantContact::Components::Contact)
end
@@ -43,11 +43,11 @@
describe "#add_contact" do
it "adds a contact" do
json = load_file('contact_response.json')
net_http_resp = Net::HTTPResponse.new(1.0, 200, 'OK')
- response = RestClient::Response.create(json, net_http_resp, {}, @request)
+ response = RestClient::Response.create(json, net_http_resp, @request)
RestClient.stub(:post).and_return(response)
new_contact = ConstantContact::Components::Contact.create(JSON.parse(json))
contact = ConstantContact::Services::ContactService.new(@client).add_contact(new_contact)
contact.should be_kind_of(ConstantContact::Components::Contact)
@@ -58,50 +58,50 @@
describe "#delete_contact" do
it "deletes a contact" do
contact_id = 196
net_http_resp = Net::HTTPResponse.new(1.0, 204, 'No Content')
- response = RestClient::Response.create('', net_http_resp, {}, @request)
+ response = RestClient::Response.create('', net_http_resp, @request)
RestClient.stub(:delete).and_return(response)
result = ConstantContact::Services::ContactService.new(@client).delete_contact(contact_id)
- result.should be_true
+ expect(result).to eq true
end
end
describe "#delete_contact_from_lists" do
it "deletes a contact" do
contact_id = 196
net_http_resp = Net::HTTPResponse.new(1.0, 204, 'No Content')
- response = RestClient::Response.create('', net_http_resp, {}, @request)
+ response = RestClient::Response.create('', net_http_resp, @request)
RestClient.stub(:delete).and_return(response)
result = ConstantContact::Services::ContactService.new(@client).delete_contact_from_lists(contact_id)
- result.should be_true
+ expect(result).to eq true
end
end
describe "#delete_contact_from_list" do
it "deletes a contact" do
contact_id = 196
list_id = 1
net_http_resp = Net::HTTPResponse.new(1.0, 204, 'No Content')
- response = RestClient::Response.create('', net_http_resp, {}, @request)
+ response = RestClient::Response.create('', net_http_resp, @request)
RestClient.stub(:delete).and_return(response)
result = ConstantContact::Services::ContactService.new(@client).delete_contact_from_list(contact_id, list_id)
- result.should be_true
+ expect(result).to eq true
end
end
describe "#update_contact" do
it "updates a contact" do
json = load_file('contact_response.json')
net_http_resp = Net::HTTPResponse.new(1.0, 200, 'OK')
- response = RestClient::Response.create(json, net_http_resp, {}, @request)
+ response = RestClient::Response.create(json, net_http_resp, @request)
RestClient.stub(:put).and_return(response)
contact = ConstantContact::Components::Contact.create(JSON.parse(json))
result = ConstantContact::Services::ContactService.new(@client).update_contact(contact)
result.should be_kind_of(ConstantContact::Components::Contact)
\ No newline at end of file