code.gitea.io/gitea@v1.22.3/models/actions/main_test.go (about)

     1  // Copyright 2023 The Gitea Authors. All rights reserved.
     2  // SPDX-License-Identifier: MIT
     3  
     4  package actions
     5  
     6  import (
     7  	"testing"
     8  
     9  	"code.gitea.io/gitea/models/unittest"
    10  )
    11  
    12  func TestMain(m *testing.M) {
    13  	unittest.MainTest(m, &unittest.TestOptions{
    14  		FixtureFiles: []string{
    15  			"action_runner_token.yml",
    16  		},
    17  	})
    18  }