예제 #1
0
파일: mongo.go 프로젝트: iwarsong/bearded
// Create db with randomly generated name.
// Returns session and database name
func RandomTestMongoUp() (*mgo.Session, string, error) {
	dbName := fmt.Sprintf("%s%s", TestDbPrefix, utils.UuidV4String())
	session, err := PrepareTestDb(fmt.Sprintf("mongodb://localhost/%s", dbName))
	return session, dbName, err
}
예제 #2
0
파일: file.go 프로젝트: iwarsong/bearded
func UniqueFileId() string {
	return utils.UuidV4String()
}