예제 #1
0
파일: bot_test.go 프로젝트: killix/bot
func TestAddContext(t *testing.T) {
	b := NewBot(nullResponder{})

	b.AddContext(nullContext{})

	test.Equals(t, 1, len(b.contexts))
}
예제 #2
0
파일: bot_test.go 프로젝트: killix/bot
func TestNewBotAddsResponder(t *testing.T) {
	b := NewBot(nullResponder{})

	test.Equals(t, nullResponder{}, b.responder)
}