mirror of https://github.com/go-redis/redis.git
19 lines
331 B
Go
19 lines
331 B
Go
package internal
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestRetryBackoff(t *testing.T) {
|
|
RegisterTestingT(t)
|
|
|
|
for i := 0; i <= 16; i++ {
|
|
backoff := RetryBackoff(i, time.Millisecond, 512*time.Millisecond)
|
|
Expect(backoff >= 0).To(BeTrue())
|
|
Expect(backoff <= 512*time.Millisecond).To(BeTrue())
|
|
}
|
|
}
|