Set variables to normal, remove empty test

This commit is contained in:
Shauna 2014-09-13 15:14:32 -04:00
parent cb2122ed3a
commit 244ff44b6d
2 changed files with 3 additions and 6 deletions

6
bot.py
View File

@ -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']

View File

@ -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)