mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 16:10:55 +00:00
orm add ResetModelCache api for test case
This commit is contained in:
parent
d5b5c18cf9
commit
53aaf3b4a9
@ -98,3 +98,9 @@ func (mc *_modelCache) clean() {
|
|||||||
mc.cacheByFN = make(map[string]*modelInfo)
|
mc.cacheByFN = make(map[string]*modelInfo)
|
||||||
mc.done = false
|
mc.done = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clean model cache. Then you can re-RegisterModel.
|
||||||
|
// Common use this api for test case.
|
||||||
|
func ResetModelCache() {
|
||||||
|
modelCache.clean()
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user