2023-04-24 20:52:12 +02:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"forge.cadoles.com/cadoles/bouncer/internal/store/testsuite"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestProxyRepository(t *testing.T) {
|
2024-06-27 17:03:50 +02:00
|
|
|
repository := NewProxyRepository(client, DefaultTxMaxAttempts, DefaultTxBaseDelay)
|
2023-04-24 20:52:12 +02:00
|
|
|
testsuite.TestProxyRepository(t, repository)
|
|
|
|
}
|