You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
404 B
18 lines
404 B
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) |
|
}) |
|
}
|
|
|