hybridgroup.gobot/eventer_test.go

15 lines
212 B
Go
Raw Normal View History

2014-11-30 16:19:53 +08:00
package gobot
import (
"testing"
)
2014-11-30 16:19:53 +08:00
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 Event names")
2014-11-30 16:19:53 +08:00
}
}