Commit 4776297b by Karl Clement

Added test

parent e7710cff
......@@ -40,6 +40,14 @@ describe('FullContact.Person', function () {
it('provides the proper casing');
});
describe('#email with webhook url/id/bodyType', function () {
it('retrieves data by e-mail and sets up a webhook with the right url and id and body type', function (done) {
api.person.email('arnout@observe.it', null, 'http://requestb.in/1bxgb751', 'webhookTest', 'json', done);
});
it('provides the proper casing');
});
describe('#md5', function () {
var md5 = require('crypto').createHash('md5')
.update('arnout@observe.it')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment