Added more tests

This commit is contained in:
2024-06-04 15:51:31 +02:00
parent 8974b8b0aa
commit 453b4d8956
5 changed files with 42 additions and 33 deletions

13
src/elf/ELF_test.go Normal file
View File

@ -0,0 +1,13 @@
package elf_test
import (
"io"
"testing"
"git.akyoto.dev/cli/q/src/elf"
)
func TestELF(t *testing.T) {
exe := elf.New(nil, nil)
exe.Write(io.Discard)
}