gosuki/internal/gosuki_test.go
2023-09-10 01:14:13 +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")
}