本文整理汇总了Golang中github.com/cloudfoundry-incubator/routing-api/db/fakes.FakeDB.SaveRouteStub方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeDB.SaveRouteStub方法的具体用法?Golang FakeDB.SaveRouteStub怎么用?Golang FakeDB.SaveRouteStub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/routing-api/db/fakes.FakeDB
的用法示例。
在下文中一共展示了FakeDB.SaveRouteStub方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
AfterEach(func() {
process.Signal(syscall.SIGTERM)
})
JustBeforeEach(func() {
process = ifrit.Invoke(routeRegister)
})
Context("registration", func() {
Context("with no errors", func() {
BeforeEach(func() {
database.SaveRouteStub = func(route models.Route) error {
return nil
}
})
It("registers the route for a routing api on init", func() {
Eventually(database.SaveRouteCallCount).Should(Equal(1))
Eventually(func() models.Route { return database.SaveRouteArgsForCall(0) }).Should(Equal(route))
})
It("registers on an interval", func() {
timeChan <- time.Now()
Eventually(database.SaveRouteCallCount).Should(Equal(2))
Eventually(func() models.Route { return database.SaveRouteArgsForCall(1) }).Should(Equal(route))
Eventually(logger.Logs).Should(HaveLen(0))