Commit f1f57b91 by Karl Clement

Added style arg

parent da2b90d1
...@@ -48,6 +48,14 @@ describe('FullContact.Person', function () { ...@@ -48,6 +48,14 @@ describe('FullContact.Person', function () {
it('provides the proper casing'); it('provides the proper casing');
}); });
describe('#email with webhook url/id/bodyType/style', function () {
it('retrieves data by e-mail and sets up a webhook with the right url and id', function (done) {
api.person.email('arnout@observe.it', null, 'http://requestb.in/1bxgb751', 'webhookTest', 'json', 'dictionary', done);
});
it('provides the proper casing');
});
describe('#md5', function () { describe('#md5', function () {
var md5 = require('crypto').createHash('md5') var md5 = require('crypto').createHash('md5')
.update('arnout@observe.it') .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