go-common/app/admin/ep/melloi/dao/user_test.go

15 lines
229 B
Go
Raw Normal View History

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