mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
23 lines
582 B
Go
23 lines
582 B
Go
package scanner
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/beego/beego/v2/client/orm"
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/db"
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/tests"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestScanner(t *testing.T) {
|
|
tests.Init(t, true)
|
|
conf.Server.DbPath = "file::memory:?cache=shared"
|
|
_ = orm.RegisterDataBase("default", db.Driver, conf.Server.DbPath)
|
|
db.EnsureLatestVersion()
|
|
log.SetLevel(log.LevelFatal)
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Scanner Suite")
|
|
}
|