it('should implement a update service', function () {
        companyRestService.update(company);
        $httpBackend.expectPUT(expectedOperationUrl + '/'  + company.id, company).respond();
        $httpBackend.flush();
    });