15 lines
269 B
Go
15 lines
269 B
Go
|
package testsuite
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forge.cadoles.com/Cadoles/emissary/internal/datastore"
|
||
|
)
|
||
|
|
||
|
func TestTenantRepository(t *testing.T, repo datastore.TenantRepository) {
|
||
|
t.Run("Cases", func(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
runTenantRepositoryTests(t, repo)
|
||
|
})
|
||
|
}
|