本文整理匯總了Golang中code/cloudfoundry/org/cli/cf/api/spacequotas/spacequotasfakes.FakeSpaceQuotaRepository.FindByNameAndOrgGUIDReturns方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeSpaceQuotaRepository.FindByNameAndOrgGUIDReturns方法的具體用法?Golang FakeSpaceQuotaRepository.FindByNameAndOrgGUIDReturns怎麽用?Golang FakeSpaceQuotaRepository.FindByNameAndOrgGUIDReturns使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類code/cloudfoundry/org/cli/cf/api/spacequotas/spacequotasfakes.FakeSpaceQuotaRepository
的用法示例。
在下文中一共展示了FakeSpaceQuotaRepository.FindByNameAndOrgGUIDReturns方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
Expect(ui.Outputs()).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"Error"},
))
Expect(spaceRepo.CreateCallCount()).To(BeZero())
})
})
Context("when the -q flag is provided", func() {
It("assigns the space-quota specified to the space", func() {
spaceQuota := models.SpaceQuota{
Name: "my-space-quota",
GUID: "my-space-quota-guid",
}
spaceQuotaRepo.FindByNameAndOrgGUIDReturns(spaceQuota, nil)
runCommand("-q", "my-space-quota", "my-space")
spaceQuotaName, orgGUID := spaceQuotaRepo.FindByNameAndOrgGUIDArgsForCall(0)
Expect(spaceQuotaName).To(Equal(spaceQuota.Name))
Expect(orgGUID).To(Equal(configOrg.GUID))
_, _, actualSpaceQuotaGUID := spaceRepo.CreateArgsForCall(0)
Expect(actualSpaceQuotaGUID).To(Equal(spaceQuota.GUID))
})
Context("when the space-quota provided does not exist", func() {
It("fails", func() {
spaceQuotaRepo.FindByNameAndOrgGUIDReturns(models.SpaceQuota{}, errors.New("Error"))
runCommand("-q", "my-space-quota", "my-space")