upos_test.go 262 B

12345678910111213141516
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestUpos(t *testing.T) {
  8. Convey("test upos", t, func() {
  9. saveTo, err := testDao.Upos(context.TODO(), 1111)
  10. So(err, ShouldBeNil)
  11. t.Logf("%+v", saveTo)
  12. })
  13. }