52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestDaoEpContests(t *testing.T) {
|
|
var (
|
|
c = context.Background()
|
|
keys = []int64{1, 2, 3}
|
|
)
|
|
convey.Convey("EpContests", t, func(ctx convey.C) {
|
|
res, err := d.EpContests(c, keys)
|
|
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
|
|
ctx.So(err, convey.ShouldBeNil)
|
|
ctx.So(res, convey.ShouldNotBeNil)
|
|
})
|
|
})
|
|
}
|
|
|
|
func TestDaoEpSeasons(t *testing.T) {
|
|
var (
|
|
c = context.Background()
|
|
keys = []int64{1, 2, 3}
|
|
)
|
|
convey.Convey("EpSeasons", t, func(ctx convey.C) {
|
|
res, err := d.EpSeasons(c, keys)
|
|
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
|
|
ctx.So(err, convey.ShouldBeNil)
|
|
ctx.So(res, convey.ShouldNotBeNil)
|
|
})
|
|
})
|
|
}
|
|
func TestDaoEpTeams(t *testing.T) {
|
|
convey.Convey("EpTeams", t, func(convCtx convey.C) {
|
|
var (
|
|
c = context.Background()
|
|
keys = []int64{1, 2, 3}
|
|
)
|
|
convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
|
|
res, err := d.EpTeams(c, keys)
|
|
convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
|
|
convCtx.So(err, convey.ShouldBeNil)
|
|
convCtx.So(res, convey.ShouldNotBeNil)
|
|
})
|
|
})
|
|
})
|
|
}
|