本文整理汇总了Golang中code/cloudfoundry/org/cli/cf/api/quotas/quotasfakes.FakeQuotaRepository.CreateArgsForCall方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeQuotaRepository.CreateArgsForCall方法的具体用法?Golang FakeQuotaRepository.CreateArgsForCall怎么用?Golang FakeQuotaRepository.CreateArgsForCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类code/cloudfoundry/org/cli/cf/api/quotas/quotasfakes.FakeQuotaRepository
的用法示例。
在下文中一共展示了FakeQuotaRepository.CreateArgsForCall方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Context("when the user is logged in", func() {
BeforeEach(func() {
requirementsFactory.NewLoginRequirementReturns(requirements.Passing{})
requirementsFactory.NewMinAPIVersionRequirementReturns(requirements.Passing{})
})
It("fails requirements when called without a quota name", func() {
runCommand()
Expect(ui.Outputs()).To(ContainSubstrings(
[]string{"Incorrect Usage", "Requires an argument"},
))
})
It("creates a quota with a given name", func() {
runCommand("my-quota")
Expect(quotaRepo.CreateArgsForCall(0).Name).To(Equal("my-quota"))
Expect(ui.Outputs()).To(ContainSubstrings(
[]string{"Creating quota", "my-quota", "my-user", "..."},
[]string{"OK"},
))
})
Context("when the -i flag is not provided", func() {
It("defaults the memory limit to unlimited", func() {
runCommand("my-quota")
Expect(quotaRepo.CreateArgsForCall(0).InstanceMemoryLimit).To(Equal(int64(-1)))
})
})
Context("when the -m flag is provided", func() {