go-common/app/interface/main/dm2/dao/upos_test.go

17 lines
262 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
})
}