1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00
hybridgroup.gobot/eventer_test.go

19 lines
314 B
Go
Raw Normal View History

2014-11-30 00:19:53 -08:00
package gobot
import "testing"
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")
Refute(t, event, nil)
event = e.Event("booyeah")
Assert(t, event, (*Event)(nil))
}