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