Separated code and data

This commit is contained in:
Eduard Urbach 2023-10-20 13:22:06 +02:00
parent 3880a493c1
commit 47c2076f2e
Signed by: eduard
GPG key ID: 49226B848C78F6C8
8 changed files with 76 additions and 67 deletions

View file

@ -1,15 +0,0 @@
package main_test
import (
"io"
"os"
"testing"
"git.akyoto.dev/cli/q/cli/log"
)
func TestMain(m *testing.M) {
log.Info.SetOutput(io.Discard)
log.Error.SetOutput(io.Discard)
os.Exit(m.Run())
}