2017-02-06 16:18:36 +01: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-23 00:28:08 +02:00
|
|
|
|
|
|
|
import (
|
2016-07-09 07:22:28 +02:00
|
|
|
"testing"
|
2016-04-23 00:28:08 +02:00
|
|
|
|
2021-09-19 13:49:59 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2017-02-06 16:18:36 +01:00
|
|
|
|
2017-06-06 15:53:16 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-04-23 00:28:08 +02:00
|
|
|
)
|
|
|
|
|
2022-01-17 19:31:58 +01:00
|
|
|
func TestCheckRepoStats(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
assert.NoError(t, CheckRepoStats(db.DefaultContext))
|
|
|
|
}
|
|
|
|
|
2020-07-07 21:16:34 +02:00
|
|
|
func TestDoctorUserStarNum(t *testing.T) {
|
2021-11-12 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2020-07-07 21:16:34 +02:00
|
|
|
|
|
|
|
assert.NoError(t, DoctorUserStarNum())
|
|
|
|
}
|