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