本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/app_files/fakes.FakeAppFiles.CopyFilesReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeAppFiles.CopyFilesReturns方法的具体用法?Golang FakeAppFiles.CopyFilesReturns怎么用?Golang FakeAppFiles.CopyFilesReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/app_files/fakes.FakeAppFiles
的用法示例。
在下文中一共展示了FakeAppFiles.CopyFilesReturns方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
appBitsRepo.GetApplicationFilesReturns(nil, expectedErr)
})
It("returns an error if we cannot reach the cc", func() {
_, _, err := actor.GatherFiles(allFiles, appDir, tmpDir)
Expect(err).To(HaveOccurred())
Expect(err).To(Equal(expectedErr))
})
})
Context("when we cannot copy the app files", func() {
var expectedErr error
BeforeEach(func() {
expectedErr = errors.New("error")
appFiles.CopyFilesReturns(expectedErr)
})
It("returns an error", func() {
_, _, err := actor.GatherFiles(allFiles, appDir, tmpDir)
Expect(err).To(HaveOccurred())
Expect(err).To(Equal(expectedErr))
})
})
Context("when using .cfignore", func() {
BeforeEach(func() {
appDir = filepath.Join(fixturesDir, "exclude-a-default-cfignore")
// Ignore app files for this test as .cfignore is not one of them
appBitsRepo.GetApplicationFilesReturns(nil, nil)
})