Tests are finally also ready

This commit is contained in:
2025-12-11 15:12:21 -07:00
parent 4e6ded0596
commit ad201adade
3 changed files with 919 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: build test bench clean
build:
go build -o himbocrypt cmd/himbocrypt/main.go
test:
go test ./pkg/engine/... -v
bench:
go test ./pkg/engine/... -bench=. -benchmem
clean:
rm -f himbocrypt