コード例 #1
0
ファイル: googleimage_test.go プロジェクト: 135yshr/slackbot
func TestCheckMessage(t *testing.T) {
	p := googleimage.NewPlugin(googleimage.NewGoogleImageAPIClient(http.DefaultClient, "cx", "key"))
	ok, _ := p.CheckMessage(testEvent, testEvent.BaseText())
	if !ok {
		t.Errorf("ERROR check = NG")
	}
}
コード例 #2
0
ファイル: googleimage_test.go プロジェクト: 135yshr/slackbot
func TestDoAction(t *testing.T) {
	p := googleimage.NewPlugin(googleimage.NewGoogleImageAPIClient(http.DefaultClient, "cx", "key"))

	next := p.DoAction(testEvent, testEvent.BaseText())

	if next != false {
		t.Errorf("ERROR next != false")
	}
}