mosaic_test.go 287 B

123456789101112131415
  1. package archive
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "testing"
  6. )
  7. func Test_Mosaic(t *testing.T) {
  8. Convey("test archive", t, WithDao(func(d *Dao) {
  9. m, err := d.Mosaic(context.Background(), 10116994)
  10. So(err, ShouldBeNil)
  11. So(m, ShouldNotBeNil)
  12. }))
  13. }