mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-30 19:22:08 +00:00
18 lines
296 B
Go
18 lines
296 B
Go
|
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
package secret_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forgejo.org/models/unittest"
|
||
|
|
||
|
_ "forgejo.org/models"
|
||
|
_ "forgejo.org/models/activities"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
unittest.MainTest(m)
|
||
|
}
|