gosuki/gomark_test.go
Chakib Ben Ziane 03d30e6704 VERY MUCH WIP big refactoring into browser modules
- inspired from golang database package and caddyserver modules
- Migrating from class style to interfaces
- FIX: browser provisioning is broken, config is not ready when the
  browser module is registered.
2022-10-23 15:08:06 +02:00

11 lines
288 B
Go

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