hybridgroup.gobot/eventer_test.go

25 lines
440 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 TestEventerAddEvent(t *testing.T) {
2014-11-30 16:19:53 +08:00
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
}
}
func TestEventerDeleteEvent(t *testing.T) {
e := NewEventer()
e.AddEvent("test1")
e.DeleteEvent("test1")
if _, ok := e.Events()["test1"]; ok {
t.Errorf("Could not add delete event from list of Event names")
}
}