1
0
mirror of https://github.com/pinpox/gitea-matrix-bot synced 2024-11-26 08:43:47 +01:00
gitea-matrix-bot/main_test.go

21 lines
260 B
Go
Raw Normal View History

2019-04-13 22:50:41 +02:00
package main
import (
"testing"
_ "github.com/matrix-org/gomatrix"
)
func Test_main(t *testing.T) {
tests := []struct {
name string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
main()
})
}
}