redis_test.go 507 B

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