您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

explore_repos_test.go 334B

123456789101112131415161718
  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package integration
  4. import (
  5. "net/http"
  6. "testing"
  7. "code.gitea.io/gitea/tests"
  8. )
  9. func TestExploreRepos(t *testing.T) {
  10. defer tests.PrepareTestEnv(t)()
  11. req := NewRequest(t, "GET", "/explore/repos")
  12. MakeRequest(t, req, http.StatusOK)
  13. }