mirror of
				https://github.com/redis/go-redis.git
				synced 2025-11-04 02:33:24 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package internal
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	. "github.com/bsm/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())
 | 
						|
	}
 | 
						|
}
 |