2021-09-19 05:49:59 -06:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-09-19 05:49:59 -06:00
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
package paginator
|
2021-09-19 05:49:59 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2021-11-12 07:36:47 -07:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-09-19 05:49:59 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-27 19:38:53 -06:00
|
|
|
unittest.MainTest(m)
|
2021-09-19 05:49:59 -06:00
|
|
|
}
|