Merge pull request #45 from velour/shhhh_babbler

Quiet down the babbler misses
This commit is contained in:
Chris Sexton 2017-04-12 09:04:19 -04:00 committed by GitHub
commit 3ff10ed38b
2 changed files with 5 additions and 9 deletions

View File

@ -87,9 +87,7 @@ func (p *BabblerPlugin) Message(message msg.Message) bool {
} else {
saying = p.babbleSeed(tokens[0], tokens[2:])
}
if saying == "" {
p.Bot.SendMessage(message.Channel, "Ze ain't said nothin'")
} else {
if saying != "" {
p.Bot.SendMessage(message.Channel, saying)
}
return true
@ -315,7 +313,7 @@ func (p *BabblerPlugin) babbleSeed(who string, seed []string) string {
return strings.TrimSpace(strings.Join(words, " "))
}
return fmt.Sprintf("could not find babbler: %s", who)
return ""
}
func (into *babbler) merge(other *babbler, intoName, otherName string) {

View File

@ -30,10 +30,9 @@ func TestBabblerNoBabbler(t *testing.T) {
c := New(mb)
c.config.Babbler.DefaultUsers = []string{"seabass"}
assert.NotNil(t, c)
res := c.Message(makeMessage("!seabass2 says"))
assert.Len(t, mb.Messages, 1)
c.Message(makeMessage("!seabass2 says"))
res := assert.Len(t, mb.Messages, 0)
assert.True(t, res)
assert.Contains(t, mb.Messages[0], "could not find babbler: seabass2")
}
func TestBabblerNothingSaid(t *testing.T) {
@ -42,9 +41,8 @@ func TestBabblerNothingSaid(t *testing.T) {
c.config.Babbler.DefaultUsers = []string{"seabass"}
assert.NotNil(t, c)
res := c.Message(makeMessage("!seabass says"))
assert.Len(t, mb.Messages, 1)
assert.Len(t, mb.Messages, 0)
assert.True(t, res)
assert.Contains(t, mb.Messages[0], "Ze ain't said nothin")
}
func TestBabbler(t *testing.T) {