secure-messaging/go/internal/leaf/leaf_test.go
George Lambert d67509e470
Some checks are pending
ci / python (push) Waiting to run
ci / go (push) Waiting to run
S06-S08: Python spec, Go in-process leaf, tests and Forgejo CI
2026-09-15 22:17:19 -04:00

14 lines
198 B
Go

package leaf
import "testing"
func TestStartInProcess(t *testing.T) {
n, err := Start("")
if err != nil {
t.Fatal(err)
}
defer n.Shutdown()
if n.Addr() == "" {
t.Fatal("empty addr")
}
}