it('should set status to "error" if failed to load address books', function() {
      contactAddressbookService.listAggregatedAddressbooks = sinon.stub().returns($q.reject('an error'));
      var controller = initController();

      expect(controller.status).to.equal('error');