package models import ( _ "github.com/go-sql-driver/mysql" _ "github.com/iwind/TeaGo/bootstrap" "github.com/iwind/TeaGo/maps" "testing" "time" ) func TestNodeValueDAO_CreateValue(t *testing.T) { dao := NewNodeValueDAO() m := maps.Map{ "hello": "world12344", } err := dao.CreateValue(nil, NodeRoleNode, 1, "test", m.AsJSON(), time.Now().Unix()) if err != nil { t.Fatal(err) } t.Log("ok") }