v0.0.242 forgot to return something

This commit is contained in:
2023-08-14 16:05:12 +02:00
parent 56ae0cfc6c
commit 813ce71e3e
4 changed files with 17 additions and 8 deletions

12
langext/array_test.go Normal file
View File

@@ -0,0 +1,12 @@
package langext
import (
"gogs.mikescher.com/BlackForestBytes/goext/tst"
"testing"
)
func TestJoinString(t *testing.T) {
ids := []string{"1", "2", "3"}
res := JoinString(ids, ",")
tst.AssertEqual(t, res, "1,2,3")
}