account_test.go 311 B

12345678910111213141516
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestRPCInfos(t *testing.T) {
  8. convey.Convey("RPCInfos", t, func() {
  9. infos, err := d.RPCInfos(context.TODO(), []int64{1, 2, 3})
  10. convey.So(err, convey.ShouldBeNil)
  11. convey.So(infos, convey.ShouldNotBeNil)
  12. })
  13. }