2017-02-06 08:18:36 -07:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
2016-04-22 16:28:08 -06:00
|
|
|
|
|
|
|
import (
|
2016-07-08 23:22:28 -06:00
|
|
|
"testing"
|
2016-04-22 16:28:08 -06:00
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2017-02-06 08:18:36 -07:00
|
|
|
|
2017-06-06 07:53:16 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-04-22 16:28:08 -06:00
|
|
|
)
|
|
|
|
|
2022-01-17 11:31:58 -07:00
|
|
|
func TestCheckRepoStats(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
assert.NoError(t, CheckRepoStats(db.DefaultContext))
|
|
|
|
}
|
|
|
|
|
2020-07-07 13:16:34 -06:00
|
|
|
func TestDoctorUserStarNum(t *testing.T) {
|
2021-11-12 07:36:47 -07:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2020-07-07 13:16:34 -06:00
|
|
|
|
|
|
|
assert.NoError(t, DoctorUserStarNum())
|
|
|
|
}
|