edge/pkg/module/share/sqlite/module_test.go
William Petit f99b1ac6ac
All checks were successful
arcad/edge/pipeline/head This commit looks good
feat(module,share): cross-app resource sharing module
2023-04-21 12:40:09 +02:00

14 lines
241 B
Go

package sqlite
import (
"testing"
"forge.cadoles.com/arcad/edge/pkg/module/share/testsuite"
"gitlab.com/wpetit/goweb/logger"
)
func TestModule(t *testing.T) {
logger.SetLevel(logger.LevelDebug)
testsuite.TestModule(t, newTestRepo)
}