go-common/app/admin/main/relation/dao/account_test.go
2019-04-22 18:49:16 +08:00

17 lines
311 B
Go

package dao
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestRPCInfos(t *testing.T) {
convey.Convey("RPCInfos", t, func() {
infos, err := d.RPCInfos(context.TODO(), []int64{1, 2, 3})
convey.So(err, convey.ShouldBeNil)
convey.So(infos, convey.ShouldNotBeNil)
})
}