1 Star 0 Fork 0

jinyule/xorm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tag_cache_test.go 833 Bytes
一键复制 编辑 原始数据 按行查看 历史
lunny 提交于 2018-04-11 23:09 . fix update map with table name (#888)
// Copyright 2017 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package xorm
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCacheTag(t *testing.T) {
assert.NoError(t, prepareEngine())
type CacheDomain struct {
Id int64 `xorm:"pk cache"`
Name string
}
assert.NoError(t, testEngine.CreateTables(&CacheDomain{}))
assert.True(t, testEngine.GetCacher(testEngine.TableName(&CacheDomain{})) != nil)
}
func TestNoCacheTag(t *testing.T) {
assert.NoError(t, prepareEngine())
type NoCacheDomain struct {
Id int64 `xorm:"pk nocache"`
Name string
}
assert.NoError(t, testEngine.CreateTables(&NoCacheDomain{}))
assert.True(t, testEngine.GetCacher(testEngine.TableName(&NoCacheDomain{})) == nil)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jinyule/xorm.git
git@gitee.com:jinyule/xorm.git
jinyule
xorm
xorm
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385