mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 13:56:26 -05:00
15 lines
229 B
Go
15 lines
229 B
Go
|
|
package dao
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
)
|
||
|
|
|
||
|
|
func Test_User(t *testing.T) {
|
||
|
|
Convey("test QueryUser", t, func() {
|
||
|
|
_, err := d.QueryUserByUserName("hujianping")
|
||
|
|
So(err, ShouldBeNil)
|
||
|
|
})
|
||
|
|
}
|