server.inject({ method: 'GET', url: '/' }, function (res) {
        Code.expect(res.result.trim()).to.equal('Hello');
        done();
      });