mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 11:49:06 +01:00
80a0ab350b
In case the behavior of the register token changes.
18 lines
313 B
Go
18 lines
313 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package actions
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
FixtureFiles: []string{
|
|
"action_runner_token.yml",
|
|
},
|
|
})
|
|
}
|