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.
 
 
 

21 lines
388 B

package archive
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestDao_ViewPoints(t *testing.T) {
var (
c = context.TODO()
)
convey.Convey("ViewPoint", t, func(ctx convey.C) {
vp, err := d.ViewPoint(c, 10106351, 10126396)
ctx.Convey("", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(vp, convey.ShouldNotBeNil)
})
})
}