go-common/app/interface/main/account/dao/usersuit/api_test.go

17 lines
301 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package usersuit
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestDao_Group(t *testing.T) {
convey.Convey("Group", t, func() {
groups, err := d.Group(context.TODO(), "")
convey.So(err, convey.ShouldBeNil)
convey.So(groups, convey.ShouldNotBeEmpty)
})
}