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

     1  // Copyright 2020 The Gitea Authors. All rights reserved.
     2  // SPDX-License-Identifier: MIT
     3  
     4  package webhook
     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  			"webhook.yml",
    16  			"hook_task.yml",
    17  		},
    18  	})
    19  }