Added more tests

This commit is contained in:
Eduard Urbach 2024-08-15 13:57:05 +02:00
parent c7881ab0ef
commit 49eaf064a3
Signed by: eduard
GPG key ID: 49226B848C78F6C8
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package macho_test
import (
"io"
"testing"
"git.akyoto.dev/cli/q/src/exe/macho"
)
func TestWrite(t *testing.T) {
macho.Write(io.Discard, nil, nil)
}