Files
EdgeAdmin/internal/events/utils_test.go

17 lines
213 B
Go
Raw Normal View History

package events
import "testing"
func TestOn(t *testing.T) {
On("hello", func() {
t.Log("world")
})
On("hello", func() {
t.Log("world2")
})
On("hello2", func() {
t.Log("world2")
})
Notify("hello")
}