mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
14 lines
231 B
Go
14 lines
231 B
Go
package locker_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/charlienet/go-mixed/redis"
|
|
"github.com/charlienet/go-mixed/tests"
|
|
)
|
|
|
|
func TestRedisDistrbutedLocker(t *testing.T) {
|
|
tests.RunOnDefaultRedis(t, func(rdb redis.Client) {
|
|
})
|
|
}
|