hotalert/alert/dummy_test.go

11 lines
162 B
Go
Raw Permalink Normal View History

2022-11-03 20:04:14 +00:00
package alert
import (
"context"
"testing"
)
func TestDummyAlerter_PostAlert(t *testing.T) {
NewDummyAlerter().PostAlert(context.TODO(), []string{"demo"})
}