Files
openbilibili/app/admin/main/relation/dao/account_test.go

17 lines
311 B
Go
Raw Normal View History

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