Files

15 lines
229 B
Go
Raw Permalink Normal View History

2019-04-22 20:46:32 +08: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)
})
}