gosuki/gosuki_test.go

11 lines
287 B
Go
Raw Normal View History

2023-02-18 23:13:23 +00:00
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) {
2023-09-06 12:25:31 +00:00
t.Skip("[integration] if gosuki.db does not exist create it")
2023-02-18 23:13:23 +00:00
}