Files
gitea/routers/api/bots/bots_test.go
2022-12-02 22:25:31 +08:00

16 lines
283 B
Go

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