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