本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/space_quotas/fakes.FakeSpaceQuotaRepository.CreateArgsForCall方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeSpaceQuotaRepository.CreateArgsForCall方法的具体用法?Golang FakeSpaceQuotaRepository.CreateArgsForCall怎么用?Golang FakeSpaceQuotaRepository.CreateArgsForCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/space_quotas/fakes.FakeSpaceQuotaRepository
的用法示例。
在下文中一共展示了FakeSpaceQuotaRepository.CreateArgsForCall方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
Context("when requirements have been met", func() {
BeforeEach(func() {
requirementsFactory.LoginSuccess = true
requirementsFactory.TargetedOrgSuccess = true
})
It("fails requirements when called without a quota name", func() {
runCommand()
Expect(ui.FailedWithUsage).To(BeTrue())
})
It("creates a quota with a given name", func() {
runCommand("my-quota")
Expect(quotaRepo.CreateArgsForCall(0).Name).To(Equal("my-quota"))
Expect(quotaRepo.CreateArgsForCall(0).OrgGuid).To(Equal("my-org-guid"))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Creating space quota", "my-org", "my-quota", "my-user", "..."},
[]string{"OK"},
))
})
Context("when the -m flag is provided", func() {
It("sets the memory limit", func() {
runCommand("-m", "50G", "erryday makin fitty jeez")
Expect(quotaRepo.CreateArgsForCall(0).MemoryLimit).To(Equal(int64(51200)))
})
It("alerts the user when parsing the memory limit fails", func() {