本文整理匯總了Golang中github.com/concourse/baggageclaim/fakes.FakeClient.ListVolumesArgsForCall方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeClient.ListVolumesArgsForCall方法的具體用法?Golang FakeClient.ListVolumesArgsForCall怎麽用?Golang FakeClient.ListVolumesArgsForCall使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/concourse/baggageclaim/fakes.FakeClient
的用法示例。
在下文中一共展示了FakeClient.ListVolumesArgsForCall方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
Context("when one cache volume is present", func() {
var workerVolume *bfakes.FakeVolume
BeforeEach(func() {
workerVolume = new(bfakes.FakeVolume)
workerVolume.HandleReturns("found-volume-handle")
fakeBaggageclaimClient.ListVolumesReturns([]baggageclaim.Volume{workerVolume}, nil)
})
It("returns the volume and true", func() {
Expect(foundVolume).To(Equal(workerVolume))
Expect(found).To(BeTrue())
})
It("found it by querying for the correct properties", func() {
_, spec := fakeBaggageclaimClient.ListVolumesArgsForCall(0)
Expect(spec).To(Equal(baggageclaim.VolumeProperties{
"resource-type": "some-resource-type",
"resource-version": `{"some":"version"}`,
"resource-source": "968e27f71617a029e58a09fb53895f1e1875b51bdaa11293ddc2cb335960875cb42c19ae8bc696caec88d55221f33c2bcc3278a7d15e8d13f23782d1a05564f1",
"resource-params": "fe7d9dbc2ac75030c3e8c88e54a33676c38d8d9d2876700bc01d4961caf898e7cbe8e738232e86afcf6a5f64a9527c458a130277b08d72fb339962968d0d0967",
"initialized": "yep",
}))
})
})
Context("when multiple cache volumes are present", func() {
var aVolume *bfakes.FakeVolume
var bVolume *bfakes.FakeVolume
BeforeEach(func() {