Initial drafts for Smart Playlists

This commit is contained in:
Deluan 2021-10-08 22:23:43 -04:00 committed by Deluan Quintão
parent 2a756eab88
commit cf8d08ec26
7 changed files with 641 additions and 0 deletions

18
model/model_suite_test.go Normal file
View file

@ -0,0 +1,18 @@
package model_test
import (
"testing"
_ "github.com/mattn/go-sqlite3"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestModel(t *testing.T) {
tests.Init(t, true)
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Model Suite")
}