本文整理匯總了Golang中github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes.FakeBmpClient.CreateBaremetalsErr方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeBmpClient.CreateBaremetalsErr方法的具體用法?Golang FakeBmpClient.CreateBaremetalsErr怎麽用?Golang FakeBmpClient.CreateBaremetalsErr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry-community/bosh-softlayer-tools/clients/fakes.FakeBmpClient
的用法示例。
在下文中一共展示了FakeBmpClient.CreateBaremetalsErr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
It("fails validation when deployment file not exists", func() {
cmd = bmp.NewCreateBaremetalsCommand(options, fakeBmpClient)
validate, err := cmd.Validate()
Expect(validate).To(BeFalse())
Expect(err).To(HaveOccurred())
})
})
})
Describe("#Execute", func() {
Context("when executing a good CreateBaremetalsCommand", func() {
Context("when executing CreateBaremetalsCommand without --dryrun", func() {
BeforeEach(func() {
fakeBmpClient.CreateBaremetalsResponse.Status = 200
fakeBmpClient.CreateBaremetalsErr = nil
})
It("executes with no error", func() {
args = []string{"bmp", "create-baremetals", "-d", deployment}
rc, err := cmd.Execute(args)
Expect(rc).To(Equal(0))
Expect(err).ToNot(HaveOccurred())
})
})
Context("when executing CreateBaremetalsCommand with --dryrun", func() {
BeforeEach(func() {
fakeBmpClient.CreateBaremetalsResponse.Status = 200
fakeBmpClient.CreateBaremetalsErr = nil
options = cmds.Options{
開發者ID:cloudfoundry-community,項目名稱:bosh-softlayer-tools,代碼行數:30,代碼來源:create_baremetals_command_test.go