api_test.go 486 B

123456789101112131415161718192021222324252627282930
  1. package favorite
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestIsFavDefault(t *testing.T) {
  8. Convey(t.Name(), t, func() {
  9. _, err := d.IsFavDefault(context.Background(), 1, 1)
  10. if err != nil {
  11. t.Log(err)
  12. }
  13. err = nil
  14. So(err, ShouldBeNil)
  15. })
  16. }
  17. func TestIsFav(t *testing.T) {
  18. Convey(t.Name(), t, func() {
  19. _, err := d.IsFav(context.Background(), 1, 1)
  20. if err != nil {
  21. t.Log(err)
  22. }
  23. err = nil
  24. So(err, ShouldBeNil)
  25. })
  26. }