it('.get() should make GET call without body', function(done) {
    ApiCaller.get({ hostname: 'flipkart.com/200/html' }, 'body')
      .then(resp => resp.json())
      .then(resp => {
        expect(resp.method).to.equal('GET');