api_test.go 484 B

123456789101112131415161718192021222324
  1. package music
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestMusicAudio(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. ids = []int64{1, 2, 3}
  11. level = int(0)
  12. ip = "127.0.0.1"
  13. )
  14. convey.Convey("Audio", t, func(ctx convey.C) {
  15. au, err := d.Audio(c, ids, level, ip)
  16. ctx.Convey("Then err should be nil.au should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(au, convey.ShouldNotBeNil)
  19. })
  20. })
  21. }