2021-06-30 05:00:02 +08:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-30 05:00:02 +08:00
|
|
|
|
|
|
|
package install
|
|
|
|
|
|
|
|
import (
|
2022-08-28 17:43:25 +08:00
|
|
|
"context"
|
2021-06-30 05:00:02 +08:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRoutes(t *testing.T) {
|
2022-08-28 17:43:25 +08:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
routes := Routes(ctx)
|
2021-06-30 05:00:02 +08:00
|
|
|
assert.NotNil(t, routes)
|
|
|
|
assert.EqualValues(t, "/", routes.R.Routes()[0].Pattern)
|
|
|
|
assert.Nil(t, routes.R.Routes()[0].SubRoutes)
|
|
|
|
assert.Len(t, routes.R.Routes()[0].Handlers, 2)
|
|
|
|
}
|