ut_rank_test.go 342 B

1234567891011121314151617
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoGitLabFace(t *testing.T) {
  8. username := "chenjianrong"
  9. convey.Convey("GitLabFace", t, func() {
  10. res, err := d.GitLabFace(context.Background(), username)
  11. convey.So(err, convey.ShouldBeNil)
  12. convey.So(res, convey.ShouldNotBeNil)
  13. })
  14. }