mirror of
https://github.com/go-gitea/gitea
synced 2024-10-28 17:59:03 +01:00
24 lines
521 B
Go
24 lines
521 B
Go
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package integration
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/test"
|
||
|
"code.gitea.io/gitea/tests"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestAdminConfig(t *testing.T) {
|
||
|
defer tests.PrepareTestEnv(t)()
|
||
|
|
||
|
session := loginUser(t, "user1")
|
||
|
req := NewRequest(t, "GET", "/admin/config")
|
||
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
||
|
assert.True(t, test.IsNormalPageCompleted(resp.Body.String()))
|
||
|
}
|