go-common/app/interface/main/dm2/dao/upos_test.go
2019-04-22 18:49:16 +08:00

17 lines
262 B
Go

package dao
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestUpos(t *testing.T) {
Convey("test upos", t, func() {
saveTo, err := testDao.Upos(context.TODO(), 1111)
So(err, ShouldBeNil)
t.Logf("%+v", saveTo)
})
}