blocky/redis/redis_suite_test.go

16 lines
278 B
Go
Raw Normal View History

package redis
import (
"testing"
. "github.com/0xERR0R/blocky/log"
2022-03-03 11:27:27 +01:00
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestRedisClient(t *testing.T) {
ConfigureLogger(LevelFatal, FormatTypeText, true)
RegisterFailHandler(Fail)
RunSpecs(t, "Redis Suite")
}