Пример #1
0
func TestCheckMessage(t *testing.T) {
	p := akari.NewPlugin()
	ok, _ := p.CheckMessage(testEvent, testEvent.BaseText())
	if !ok {
		t.Errorf("ERROR check = NG")
	}
}
Пример #2
0
func TestDoAction(t *testing.T) {
	p := akari.NewPlugin()

	next := p.DoAction(testEvent, testEvent.BaseText())

	if next != false {
		t.Errorf("ERROR next != false")
	}
}