relation_test.go 600 B

12345678910111213141516171819202122232425
  1. package newbiedao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestNewbiedaoGetRelations(t *testing.T) {
  8. convey.Convey("GetRelations", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. mid = int64(27515398)
  12. fids = []int64{389088, 6810019, 4578433}
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. res, err := d.GetRelations(c, mid, fids)
  16. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(res, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }