mirror of
https://github.com/pinpox/gitea-matrix-bot
synced 2024-11-26 08:43:47 +01:00
21 lines
260 B
Go
21 lines
260 B
Go
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()
|
|
})
|
|
}
|
|
}
|