You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }