mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-19 07:04:10 +09:00
16 lines
283 B
Go
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(), ""))
|
|
}
|