quintodrome/model/model_suite_test.go

19 lines
353 B
Go
Raw Permalink Normal View History

2021-10-08 18:23:43 -08:00
package model_test
import (
"testing"
_ "github.com/mattn/go-sqlite3"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
2022-07-26 12:47:16 -08:00
. "github.com/onsi/ginkgo/v2"
2021-10-08 18:23:43 -08:00
. "github.com/onsi/gomega"
)
func TestModel(t *testing.T) {
tests.Init(t, true)
log.SetLevel(log.LevelFatal)
2021-10-08 18:23:43 -08:00
RegisterFailHandler(Fail)
RunSpecs(t, "Model Suite")
}