it('.post() should stringify body data', function(done) {
    ApiCaller.post({ hostname: 'flipkart.com/200/html' }, { 'key': 'value' })
      .then(resp => resp.json())
      .then(resp => {
        expect(resp.body).to.equal('{"key":"value"}');