1
0
mirror of https://github.com/pinpox/gitea-matrix-bot synced 2024-11-22 19:31:58 +01:00

comment out tests

This commit is contained in:
Pablo Ovelleiro Corral 2019-04-19 11:18:02 +02:00
parent b48f6fa55c
commit a0e6f2943a
No known key found for this signature in database
GPG Key ID: F7C1D57C8464E825

@ -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 {