code.gitea.io/gitea@v1.21.7/tests/integration/explore_repos_test.go (about)

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