hotalert/alert/dummy_test.go
2022-11-03 22:04:14 +02:00

10 lines
162 B
Go

package alert
import (
"context"
"testing"
)
func TestDummyAlerter_PostAlert(t *testing.T) {
NewDummyAlerter().PostAlert(context.TODO(), []string{"demo"})
}