mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-03-12 10:04:48 -05:00
13 lines
211 B
Go
13 lines
211 B
Go
package models
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestSetEngine(t *testing.T) {
|
|
Config.Database.Path = "file::memory:?cache=shared"
|
|
err := SetEngine()
|
|
assert.NoError(t, err)
|
|
}
|