2021-10-11 06:40:03 +08:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-10-11 06:40:03 +08:00
|
|
|
|
2022-06-13 17:37:59 +08:00
|
|
|
package issues_test
|
2021-10-11 06:40:03 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2025-03-27 19:40:14 +00:00
|
|
|
issues_model "forgejo.org/models/issues"
|
|
|
|
"forgejo.org/models/unittest"
|
2022-06-13 17:37:59 +08:00
|
|
|
|
2025-03-27 19:40:14 +00:00
|
|
|
_ "forgejo.org/models"
|
|
|
|
_ "forgejo.org/models/actions"
|
|
|
|
_ "forgejo.org/models/activities"
|
|
|
|
_ "forgejo.org/models/repo"
|
|
|
|
_ "forgejo.org/models/user"
|
2022-06-15 15:02:00 +08:00
|
|
|
|
2024-07-30 19:41:10 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2021-10-11 06:40:03 +08:00
|
|
|
)
|
|
|
|
|
2022-06-13 17:37:59 +08:00
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
2022-06-13 17:37:59 +08:00
|
|
|
unittest.CheckConsistencyFor(t,
|
|
|
|
&issues_model.Issue{},
|
|
|
|
&issues_model.PullRequest{},
|
|
|
|
&issues_model.Milestone{},
|
|
|
|
&issues_model.Label{},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-11 06:40:03 +08:00
|
|
|
func TestMain(m *testing.M) {
|
2023-09-28 09:38:53 +08:00
|
|
|
unittest.MainTest(m)
|
2021-10-11 06:40:03 +08:00
|
|
|
}
|