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