13 lines
232 B
Go
13 lines
232 B
Go
|
package redis
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forge.cadoles.com/cadoles/bouncer/internal/store/testsuite"
|
||
|
)
|
||
|
|
||
|
func TestProxyRepository(t *testing.T) {
|
||
|
repository := NewProxyRepository(client)
|
||
|
testsuite.TestProxyRepository(t, repository)
|
||
|
}
|