forked from mirrors/homebox
79f7ad40cb
* add user profiles and theme selectors * lowercase buttons by default * basic layout * (wip) init token APIs * refactor server to support variable options * fix types * api refactor / registration tests * implement UI for url and join * remove console.logs * rename repository factory * fix upload size
20 lines
402 B
Go
20 lines
402 B
Go
package repo
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_Group_Create(t *testing.T) {
|
|
g, err := tRepos.Groups.GroupCreate(context.Background(), "test")
|
|
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "test", g.Name)
|
|
|
|
// Get by ID
|
|
foundGroup, err := tRepos.Groups.GroupByID(context.Background(), g.ID)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, g.ID, foundGroup.ID)
|
|
}
|