1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-02 22:17:12 +08:00
hybridgroup.gobot/eventer_test.go
2016-03-03 17:18:10 -08:00

23 lines
382 B
Go

package gobot
import (
"testing"
"github.com/hybridgroup/gobot/gobottest"
)
func TestEventer(t *testing.T) {
e := NewEventer()
e.AddEvent("test")
if _, ok := e.Events()["test"]; !ok {
t.Errorf("Could not add event to list of Events")
}
event := e.Event("test")
gobottest.Refute(t, event, nil)
event = e.Event("booyeah")
gobottest.Assert(t, event, (*Event)(nil))
}