it('should return true when home address is filled', function() {
      contactUpdateDataService.contact = { addresses: [{ type: 'home', value: 'Montpellier' }] };
      initController();
      expect(scope.shouldDisplayHome()).to.be.true;
    });