go-common/app/job/openplatform/article/dao/reply_test.go

16 lines
251 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
}))
}