本文整理汇总了Golang中github.com/tsuru/tsuru/testing.ExtensibleFakeProvisioner.PlatformRemove方法的典型用法代码示例。如果您正苦于以下问题:Golang ExtensibleFakeProvisioner.PlatformRemove方法的具体用法?Golang ExtensibleFakeProvisioner.PlatformRemove怎么用?Golang ExtensibleFakeProvisioner.PlatformRemove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/tsuru/tsuru/testing.ExtensibleFakeProvisioner
的用法示例。
在下文中一共展示了ExtensibleFakeProvisioner.PlatformRemove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestPlatformAddDuplicate
func (s *PlatformSuite) TestPlatformAddDuplicate(c *gocheck.C) {
provisioner := testing.ExtensibleFakeProvisioner{
FakeProvisioner: testing.NewFakeProvisioner(),
}
Provisioner = &provisioner
defer func() {
Provisioner = s.provisioner
}()
conn, err := db.Conn()
c.Assert(err, gocheck.IsNil)
defer conn.Close()
name := "test_platform_add"
args := make(map[string]string)
args["dockerfile"] = "http://localhost/Dockerfile"
err = PlatformAdd(name, args, nil)
defer conn.Platforms().Remove(bson.M{"_id": name})
c.Assert(err, gocheck.IsNil)
provisioner.PlatformRemove(name)
err = PlatformAdd(name, args, nil)
_, ok := err.(DuplicatePlatformError)
c.Assert(ok, gocheck.Equals, true)
}