本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeBuildpackRepository.Buildpacks方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeBuildpackRepository.Buildpacks方法的具體用法?Golang FakeBuildpackRepository.Buildpacks怎麽用?Golang FakeBuildpackRepository.Buildpacks使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/cli/cf/api/fakes.FakeBuildpackRepository
的用法示例。
在下文中一共展示了FakeBuildpackRepository.Buildpacks方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
Context("when logged in", func() {
BeforeEach(func() {
requirementsFactory.LoginSuccess = true
})
It("lists buildpacks", func() {
p1 := 5
p2 := 10
p3 := 15
t := true
f := false
buildpackRepo.Buildpacks = []models.Buildpack{
models.Buildpack{Name: "Buildpack-1", Position: &p1, Enabled: &t, Locked: &f},
models.Buildpack{Name: "Buildpack-2", Position: &p2, Enabled: &f, Locked: &t},
models.Buildpack{Name: "Buildpack-3", Position: &p3, Enabled: &t, Locked: &f},
}
RunCommand()
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Getting buildpacks"},
[]string{"buildpack", "position", "enabled"},
[]string{"Buildpack-1", "5", "true", "false"},
[]string{"Buildpack-2", "10", "false", "true"},
[]string{"Buildpack-3", "15", "true", "false"},
))
})
It("tells the user if no build packs exist", func() {