本文整理汇总了Golang中code/cloudfoundry/org/garden-shed/layercake/fake_cake.FakeCake.RegisterArgsForCall方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeCake.RegisterArgsForCall方法的具体用法?Golang FakeCake.RegisterArgsForCall怎么用?Golang FakeCake.RegisterArgsForCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类code/cloudfoundry/org/garden-shed/layercake/fake_cake.FakeCake
的用法示例。
在下文中一共展示了FakeCake.RegisterArgsForCall方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
})
})
Context("when the cake does not contain any of the layers", func() {
JustBeforeEach(func() {
_, err := remote.Fetch(parseURL("docker:///foo#some-tag"), 67)
Expect(err).NotTo(HaveOccurred())
})
It("registers each of the layers in the graph", func() {
Expect(fakeCake.RegisterCallCount()).To(Equal(3))
})
It("registers the layer contents under its Strong IDs", func() {
image, reader := fakeCake.RegisterArgsForCall(0)
Expect(image.ID).To(Equal("abc-id"))
Expect(image.Parent).To(Equal("abc-parent-id"))
b, err := ioutil.ReadAll(reader)
Expect(err).NotTo(HaveOccurred())
Expect(string(b)).To(Equal("abc-def-contents"))
})
It("registers the layer with the correct size", func() {
image, _ := fakeCake.RegisterArgsForCall(0)
Expect(image.Size).To(BeEquivalentTo(1))
})
})
Context("when the graph already contains a layer", func() {