forked from NYANDEV/forgejo
80ac107dc9
(cherry picked from commit 20b56692693e054bb3c04b4ef12b29b0715b4530) (cherry picked from commit 1574643a6a9634e5b92c033a4bfb69062a86bd05) Update semantic version according to specification (cherry picked from commit 22510f41306f9c133a7e99b61f9c38dabfd4b810) Mise à jour de 'Makefile' (cherry picked from commit c3d85d8409f1bb18a45659a167cf1ffee057f3b6) (cherry picked from commit 5ea23098513c068444226af41faf9be9c4c998e6) (cherry picked from commit 4f3970e6c46d0bec217f84c5a06d2523b6a6c104) [API] [SEMVER] replace number with version [API] [SEMVER] [v1.20] less is replaced by css (cherry picked from commit43a3a40825
) (cherry picked from commit 669cea25bb202e5f8ee7bf16bd0dca4f43b04593) (cherry picked from commite25190d2b4
) (cherry picked from commit5df876e19e
) (cherry picked from commitfc94f6fae2
) (cherry picked from commit58c50c1fe4
)
21 lines
444 B
Go
21 lines
444 B
Go
// Copyright The Forgejo Authors.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/tests"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAPIForgejoRoot(t *testing.T) {
|
|
defer tests.PrepareTestEnv(t)()
|
|
|
|
req := NewRequest(t, "GET", "/api/forgejo/v1")
|
|
resp := MakeRequest(t, req, http.StatusNoContent)
|
|
assert.Contains(t, resp.Header().Get("Link"), "/assets/forgejo/api.v1.yml")
|
|
}
|