本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/actors/fakes.FakeServicePlanActor.UpdateSinglePlanForServiceReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeServicePlanActor.UpdateSinglePlanForServiceReturns方法的具体用法?Golang FakeServicePlanActor.UpdateSinglePlanForServiceReturns怎么用?Golang FakeServicePlanActor.UpdateSinglePlanForServiceReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/actors/fakes.FakeServicePlanActor
的用法示例。
在下文中一共展示了FakeServicePlanActor.UpdateSinglePlanForServiceReturns方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
[]string{"OK"},
))
})
It("prints an error if updating one of the plans fails", func() {
actor.UpdateAllPlansForServiceReturns(true, errors.New("Kaboom!"))
Expect(runCommand([]string{"service"})).To(BeTrue())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Kaboom!"},
))
})
Context("The user provides a plan", func() {
It("prints an error if the service does not exist", func() {
actor.UpdateSinglePlanForServiceReturns(actors.All, errors.New("could not find service"))
Expect(runCommand([]string{"-p", "service-plan", "service"})).To(BeTrue())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"could not find service"},
))
})
It("tells the user if the plan is already private", func() {
actor.UpdateSinglePlanForServiceReturns(actors.None, nil)
Expect(runCommand([]string{"-p", "private-service-plan", "service"})).To(BeTrue())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"The plan is already inaccessible for all orgs"},
[]string{"OK"},
))