gitea源码

main_test.go 266B

123456789101112131415161718
  1. // Copyright 2019 The Gitea Authors.
  2. // All rights reserved.
  3. // SPDX-License-Identifier: MIT
  4. package pull
  5. import (
  6. "testing"
  7. "code.gitea.io/gitea/models/unittest"
  8. _ "code.gitea.io/gitea/models/actions"
  9. )
  10. func TestMain(m *testing.M) {
  11. unittest.MainTest(m)
  12. }