Files
bouncer/internal/datastore/testsuite/proxy_repository.go
William Petit ce8ff3c5c1
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-02 23:13:54 +02:00

15 lines
265 B
Go

package testsuite
import (
"testing"
"forge.cadoles.com/cadoles/bouncer/internal/datastore"
)
func TestProxyRepository(t *testing.T, repo datastore.ProxyRepository) {
t.Run("Cases", func(t *testing.T) {
t.Parallel()
runProxyRepositoryTests(t, repo)
})
}