本文整理汇总了Golang中testhelpers/requirements.FakeReqFactory.Space方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeReqFactory.Space方法的具体用法?Golang FakeReqFactory.Space怎么用?Golang FakeReqFactory.Space使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testhelpers/requirements.FakeReqFactory
的用法示例。
在下文中一共展示了FakeReqFactory.Space方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
})
Describe("when the user provides fewer than two args", func() {
It("fails with usage", func() {
callRenameSpace([]string{"foo"})
Expect(ui.FailedWithUsage).To(BeTrue())
})
})
Describe("when the user is logged in and has provided an old and new space name", func() {
BeforeEach(func() {
space := models.Space{}
space.Name = "the-old-space-name"
space.Guid = "the-old-space-guid"
reqFactory.Space = space
})
It("renames a space", func() {
originalSpaceName := configRepo.SpaceFields().Name
callRenameSpace([]string{"the-old-space-name", "my-new-space"})
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"Renaming space", "the-old-space-name", "my-new-space", "my-org", "my-user"},
{"OK"},
})
Expect(spaceRepo.RenameSpaceGuid).To(Equal("the-old-space-guid"))
Expect(spaceRepo.RenameNewName).To(Equal("my-new-space"))
Expect(configRepo.SpaceFields().Name).To(Equal(originalSpaceName))
})
示例2:
})
})
Describe("when the user provides fewer than two args", func() {
It("fails with usage", func() {
callRenameSpace([]string{"foo"})
Expect(ui.FailedWithUsage).To(BeTrue())
})
})
Describe("when the user is logged in and has provided an old and new space name", func() {
BeforeEach(func() {
space := models.Space{}
space.Name = "the-old-space-name"
space.Guid = "the-old-space-guid"
requirementsFactory.Space = space
})
It("renames a space", func() {
originalSpaceName := configRepo.SpaceFields().Name
callRenameSpace([]string{"the-old-space-name", "my-new-space"})
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"Renaming space", "the-old-space-name", "my-new-space", "my-org", "my-user"},
{"OK"},
})
Expect(spaceRepo.RenameSpaceGuid).To(Equal("the-old-space-guid"))
Expect(spaceRepo.RenameNewName).To(Equal("my-new-space"))
Expect(configRepo.SpaceFields().Name).To(Equal(originalSpaceName))
})