mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
598 B
24 lines
598 B
// Copyright 2024 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package organization_test |
|
|
|
import ( |
|
"testing" |
|
|
|
org_model "code.gitea.io/gitea/models/organization" |
|
"code.gitea.io/gitea/models/unittest" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func Test_GetTeamsByIDs(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
|
|
// 1 owner team, 2 normal team |
|
teams, err := org_model.GetTeamsByIDs(t.Context(), []int64{1, 2}) |
|
assert.NoError(t, err) |
|
assert.Len(t, teams, 2) |
|
assert.Equal(t, "Owners", teams[1].Name) |
|
assert.Equal(t, "team1", teams[2].Name) |
|
}
|
|
|