bilibili-backup/app/service/main/videoup/dao/manager/manager_test.go
2019-04-22 02:59:20 +00:00

21 lines
367 B
Go

package manager
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestManagerUppers(t *testing.T) {
var (
c = context.TODO()
)
convey.Convey("Uppers", t, func(ctx convey.C) {
_, err := d.Uppers(c)
ctx.Convey("Then err should be nil.um should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
})
})
}