added possibility to add a new container group

This commit is contained in:
2021-08-11 23:16:36 +04:00
parent fa61b70d41
commit 10e5c72c90
7 changed files with 159 additions and 57 deletions

View File

@@ -0,0 +1,16 @@
package client
import (
"fmt"
"testing"
)
// Testing out if a new group is getting created
func TestCreateGroup(t *testing.T) {
group, err := CreateGroup()
if err != nil {
fmt.Println(err)
t.Fail()
}
PrettyPrint(group)
}