test/remote/client_test.rb in eroi-0.1.2 vs test/remote/client_test.rb in eroi-0.1.3
- old
+ new
@@ -100,20 +100,20 @@
end
end
context "when sending an email to a contact" do
teardown do
- # @client.remove_contact('longbob@longbob.com')
+ @client.remove_contact('longbob@longbob.com')
end
should "respond with a success" do
@client.add_contact(
- :email => 'russ@bashme.org',
+ :email => 'longbob@longbob.com'
:firstname => 'Longbob',
:lastname => 'Longson',
:mailing_lists => 'MainList')
- response = @client.send_list_edition_to_contact('MainList', 'Testing', 'russ@bashme.org')
+ response = @client.send_list_edition_to_contact('MainList', 'Testing', 'longbob@longbob.com')
assert_equal true, response.success?
end
end