本文整理汇总了Golang中github.com/concourse/go-concourse/concourse/fakes.FakeClient.JobBuildReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeClient.JobBuildReturns方法的具体用法?Golang FakeClient.JobBuildReturns怎么用?Golang FakeClient.JobBuildReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/concourse/go-concourse/concourse/fakes.FakeClient
的用法示例。
在下文中一共展示了FakeClient.JobBuildReturns方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Context("when job does not exists", func() {
BeforeEach(func() {
client.JobReturns(atc.Job{}, false, nil)
})
It("returns an error", func() {
_, err := GetBuild(client, expectedJobName, "", expectedPipelineName)
Expect(err).To(MatchError("job not found"))
})
})
})
Context("when passed pipeline, job, and build names", func() {
Context("when the build exists", func() {
BeforeEach(func() {
client.JobBuildReturns(expectedBuild, true, nil)
})
It("returns the build", func() {
build, err := GetBuild(client, expectedJobName, expectedBuildName, expectedPipelineName)
Expect(err).NotTo(HaveOccurred())
Expect(build).To(Equal(expectedBuild))
Expect(client.JobBuildCallCount()).To(Equal(1))
pipelineName, jobName, buildName := client.JobBuildArgsForCall(0)
Expect(pipelineName).To(Equal(expectedPipelineName))
Expect(buildName).To(Equal(expectedBuildName))
Expect(jobName).To(Equal(expectedJobName))
})
})
Context("when the build does not exist", func() {