It("returns an error", func() { Expect(err).To(HaveOccurred()) Expect(err.Error()).To(Equal("user-repo-error")) }) }) }) Context("when the UserRequirement returns a user without a GUID", func() { BeforeEach(func() { userRequirement.GetUserReturns(models.UserFields{Username: "******"}) }) It("removes the role using the given username", func() { Expect(err).NotTo(HaveOccurred()) Expect(userRepo.UnsetOrgRoleByUsernameCallCount()).To(Equal(1)) username, orgGUID, role := userRepo.UnsetOrgRoleByUsernameArgsForCall(0) Expect(username).To(Equal("the-user-name")) Expect(orgGUID).To(Equal("the-org-guid")) Expect(role).To(Equal(models.RoleOrgManager)) }) It("tells the user it is removing the role", func() { Expect(err).NotTo(HaveOccurred()) Expect(ui.Outputs()).To(ContainSubstrings( []string{"Removing role", "OrgManager", "the-user-name", "the-org", "the-user-name"}, []string{"OK"}, )) }) Context("when the call to CC fails", func() {