go-common/app/admin/main/manager/dao/mc_test.go
2019-04-22 18:49:16 +08:00

29 lines
556 B
Go

package dao
import (
"context"
"testing"
"go-common/library/net/http/blademaster/middleware/permit"
"github.com/smartystreets/goconvey/convey"
)
func TestSession(t *testing.T) {
convey.Convey("Session", t, func() {
sid := "1234567890"
_, err := d.Session(context.Background(), sid)
convey.So(err, convey.ShouldBeNil)
})
}
func TestSetSession(t *testing.T) {
convey.Convey("SetSession", t, func() {
p := &permit.Session{
Sid: "1234567890",
}
err := d.SetSession(context.Background(), p)
convey.So(err, convey.ShouldBeNil)
})
}