mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
92fd3fc4fd
Fix #24176 Clean some misuses of route package, clean some legacy FIXMEs --------- Co-authored-by: Giteabot <teabot@gitea.io>
25 lines
563 B
Go
25 lines
563 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package install
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRoutes(t *testing.T) {
|
|
// TODO: this test seems not really testing the handlers
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
base := Routes(ctx)
|
|
assert.NotNil(t, base)
|
|
r := base.R.Routes()[1]
|
|
routes := r.SubRoutes.Routes()[0]
|
|
assert.EqualValues(t, "/", routes.Pattern)
|
|
assert.Nil(t, routes.SubRoutes)
|
|
assert.Len(t, routes.Handlers, 2)
|
|
}
|