refactor: better integration between db and persistence packages

Will address support for different DBs in the future (+1 squashed commit)
Squashed commits:
[a014757] refactor: better integration between `db` and `persistence` packages
This commit is contained in:
Deluan 2020-02-01 13:46:03 -05:00 committed by Deluan Quintão
parent 76ca8afc84
commit 7e65bb8f20
4 changed files with 30 additions and 27 deletions

View file

@ -21,10 +21,11 @@ func TestPersistence(t *testing.T) {
tests.Init(t, true)
//os.Remove("./test-123.db")
//conf.Server.DbPath = "./test-123.db"
conf.Server.DbPath = "file::memory:?cache=shared"
//conf.Server.Path = "./test-123.db"
conf.Server.DbPath = ":memory:"
db.Init()
New()
db.EnsureDB()
db.EnsureLatestVersion()
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Persistence Suite")