25 lines
293 B
Go
25 lines
293 B
Go
|
package scn
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSendSCN(t *testing.T) {
|
||
|
t.Skip()
|
||
|
return
|
||
|
|
||
|
mr, err := New("TODO", "TODO").
|
||
|
Message("Hello Test").
|
||
|
Content("This is a test / goext").
|
||
|
Send(context.Background())
|
||
|
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
fmt.Printf("%+v\n", mr)
|
||
|
|
||
|
}
|