fix(uno): add missing Start test

This commit is contained in:
Julien Neuhart
2023-04-21 11:14:15 +02:00
parent 13098713e9
commit 43e2518fbf

View File

@@ -196,7 +196,12 @@ func TestUNO_Validate(t *testing.T) {
}
func TestUNO_Start(t *testing.T) {
mod := new(UNO)
err := mod.Start()
if err != nil {
t.Errorf("expected no error but got: %v", err)
}
}
func TestUNO_StartupMessage(t *testing.T) {