Added tests to utis

This commit is contained in:
andronache
2020-11-11 17:29:59 +02:00
committed by Dan Christian Bogos
parent ae76b8af50
commit 6923d1675e

View File

@@ -1511,3 +1511,10 @@ func TestIsURL(t *testing.T) {
}
}
}
func TestComputeHash(t *testing.T) {
_, err := ComputeHash("test1;test2;test3")
if err != nil {
t.Errorf("Expecting: <nil>, received: %+v", err)
}
}