gosuki/gosuki_test.go
2023-09-06 14:25:31 +02:00

11 lines
287 B
Go

package main_test
import "testing"
// effectively tests db/fn: initDB()
// TEST: test that gosuki.db is properly created on startup
// implement this as integration test
func TestGosukiDBCreatedAtStartup(t *testing.T) {
t.Skip("[integration] if gosuki.db does not exist create it")
}