go-common/app/job/main/spy/dao/account_test.go
2019-04-22 18:49:16 +08:00

19 lines
404 B
Go

package dao
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
gock "gopkg.in/h2non/gock.v1"
)
func TestDaoBlockAccount(t *testing.T) {
convey.Convey("BlockAccount", t, func() {
defer gock.OffAll()
httpMock("GET", d.c.Property.BlockAccountURL).Reply(200).JSON(`{"code":0}`)
err := d.BlockAccount(context.TODO(), 7593623, "1")
convey.So(err, convey.ShouldBeNil)
})
}