From 244ff44b6d8fc0cf10c6a45a424eeab1a629a087 Mon Sep 17 00:00:00 2001 From: Shauna Date: Sat, 13 Sep 2014 15:14:32 -0400 Subject: [PATCH] Set variables to normal, remove empty test --- bot.py | 6 +++--- test_bot.py | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/bot.py b/bot.py index ea347f5..e31abb8 100644 --- a/bot.py +++ b/bot.py @@ -6,9 +6,9 @@ from threading import Thread # Some basic variables used to configure the bot. server = "irc.freenode.net" -channel = "#openhatch-bots" -botnick = "WelcomeBot2" -channel_greeters = ['shauna'] #'paulproteus', 'marktraceur'] +channel = "#openhatch" # Please use #openhatch-bots rather than #openhatch for testing +botnick = "WelcomeBot" +channel_greeters = ['shauna', 'paulproteus', 'marktraceur'] hello_list = [r'hello', r'hi', r'hey', r'yo', r'sup'] help_list = [r'help', r'info', r'faq', r'explain yourself'] diff --git a/test_bot.py b/test_bot.py index 32f2cb1..4cfe77d 100644 --- a/test_bot.py +++ b/test_bot.py @@ -92,9 +92,6 @@ class TestNewComerClass(unittest.TestCase): time.sleep(0.01) self.assertAlmostEqual(newComer.born, time.time() - .01, places=2) - def test_add_newcomer_to_bot(self): - pass - def test_newcomer_around_for(self): newComer = newbot.NewComer('Shauna', newbot.Bot()) time.sleep(0.01)