1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-25 05:14:14 +00:00

orm add ResetModelCache api for test case

This commit is contained in:
slene 2014-03-10 20:52:04 +08:00
parent 00a410ad1a
commit 5583fa2054

View File

@ -98,3 +98,9 @@ func (mc *_modelCache) clean() {
mc.cacheByFN = make(map[string]*modelInfo)
mc.done = false
}
// Clean model cache. Then you can re-RegisterModel.
// Common use this api for test case.
func ResetModelCache() {
modelCache.clean()
}