viewpoint_test.go 388 B

123456789101112131415161718192021
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDao_ViewPoints(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. )
  11. convey.Convey("ViewPoint", t, func(ctx convey.C) {
  12. vp, err := d.ViewPoint(c, 10106351, 10126396)
  13. ctx.Convey("", func(ctx convey.C) {
  14. ctx.So(err, convey.ShouldBeNil)
  15. ctx.So(vp, convey.ShouldNotBeNil)
  16. })
  17. })
  18. }