1
1
mirror of https://github.com/go-gitea/gitea synced 2025-11-01 20:08:25 +00:00
Files
gitea/routers/api/actions/bots_test.go
2022-12-05 15:45:38 +08:00

16 lines
289 B
Go

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package actions
import (
"context"
"testing"
"code.gitea.io/gitea/routers/api/actions/ping"
)
func TestPingService(t *testing.T) {
ping.MainServiceTest(t, Routes(context.Background(), ""))
}