Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516
  1. // Copyright 2022 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package markup
  4. import (
  5. "testing"
  6. "code.gitea.io/gitea/models/unittest"
  7. )
  8. func TestMain(m *testing.M) {
  9. unittest.MainTest(m, &unittest.TestOptions{
  10. FixtureFiles: []string{"user.yml", "repository.yml", "access.yml", "repo_unit.yml"},
  11. })
  12. }