go-common/app/job/openplatform/article/dao/reply_test.go
2019-04-22 18:49:16 +08:00

16 lines
251 B
Go

package dao
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func Test_OpenReply(t *testing.T) {
Convey("work", t, WithDao(func(d *Dao) {
err := d.OpenReply(context.Background(), 1, 2)
So(err, ShouldBeNil)
}))
}