bilibili-backup/app/admin/ep/melloi/service/user_test.go

15 lines
240 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package service
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func Test_QueryUserInfo(t *testing.T) {
Convey("query user or create user", t, func() {
_, err := s.QueryUser("zhanglu")
So(err, ShouldBeNil)
})
}