New Criteria API

This commit is contained in:
Deluan
2021-10-21 18:03:46 -04:00
committed by Deluan Quintão
parent d0ce030386
commit 3972616585
8 changed files with 649 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package criteria
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 TestCriteria(t *testing.T) {
tests.Init(t, true)
log.SetLevel(log.LevelCritical)
gomega.RegisterFailHandler(Fail)
RunSpecs(t, "Criteria Suite")
}