mirror of
https://github.com/pinpox/gitea-matrix-bot
synced 2024-11-22 10:21:58 +01:00
comment out tests
This commit is contained in:
parent
b48f6fa55c
commit
a0e6f2943a
@ -5,36 +5,36 @@ import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_setupListener(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
}{
|
||||
// TODO: Add test cases.
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
setupListener()
|
||||
})
|
||||
}
|
||||
}
|
||||
// func Test_setupListener(t *testing.T) {
|
||||
// tests := []struct {
|
||||
// name string
|
||||
// }{
|
||||
// // TODO: Add test cases.
|
||||
// }
|
||||
// for _, tt := range tests {
|
||||
// t.Run(tt.name, func(t *testing.T) {
|
||||
// setupListener()
|
||||
// })
|
||||
// }
|
||||
// }
|
||||
|
||||
func TestPostHandler(t *testing.T) {
|
||||
type args struct {
|
||||
w http.ResponseWriter
|
||||
r *http.Request
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
}{
|
||||
// TODO: Add test cases.
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
PostHandler(tt.args.w, tt.args.r)
|
||||
})
|
||||
}
|
||||
}
|
||||
// func TestPostHandler(t *testing.T) {
|
||||
// type args struct {
|
||||
// w http.ResponseWriter
|
||||
// r *http.Request
|
||||
// }
|
||||
// tests := []struct {
|
||||
// name string
|
||||
// args args
|
||||
// }{
|
||||
// // TODO: Add test cases.
|
||||
// }
|
||||
// for _, tt := range tests {
|
||||
// t.Run(tt.name, func(t *testing.T) {
|
||||
// PostHandler(tt.args.w, tt.args.r)
|
||||
// })
|
||||
// }
|
||||
// }
|
||||
|
||||
func Test_generateMessage(t *testing.T) {
|
||||
type args struct {
|
||||
|
Loading…
Reference in New Issue
Block a user