Exemple #1
0
 def test_run_command_without_args(self):
     mtype, resp = kiss.run_command(None)
     self.assertEqual(mtype, "groupchat")
     self.assertEqual(resp, "Who should I kiss?")
Exemple #2
0
 def test_run_command_without_two_args(self):
     mtype, resp = kiss.run_command(None, "foo", "bar")
     self.assertEqual(mtype, "groupchat")
     self.assertEqual(resp, "/me kisses foo on the bar :-*")
Exemple #3
0
 def test_run_command_without_three_arg(self):
     mtype, resp = kiss.run_command(None, "foo", "bar", "hello")
     self.assertEqual(mtype, "groupchat")
     self.assertEqual(resp, "Too many arguments")
Exemple #4
0
 def test_run_command_without_one_arg(self):
     mtype, resp = kiss.run_command(None, "foo")
     self.assertEqual(mtype, "groupchat")
     self.assertEqual(resp, "/me kisses foo :-*")
Exemple #5
0
 def test_run_command_without_args(self):
     mtype, resp = kiss.run_command(None)
     self.assertEqual(mtype, 'groupchat')
     self.assertEqual(resp, 'Who should I kiss?')
Exemple #6
0
 def test_run_command_without_three_arg(self):
     mtype, resp = kiss.run_command(None, 'foo', 'bar', 'hello')
     self.assertEqual(mtype, 'groupchat')
     self.assertEqual(resp, 'Too many arguments')
Exemple #7
0
 def test_run_command_without_two_args(self):
     mtype, resp = kiss.run_command(None, 'foo', 'bar')
     self.assertEqual(mtype, 'groupchat')
     self.assertEqual(resp, '/me kisses foo on the bar :-*')
Exemple #8
0
 def test_run_command_without_one_arg(self):
     mtype, resp = kiss.run_command(None, 'foo')
     self.assertEqual(mtype, 'groupchat')
     self.assertEqual(resp, '/me kisses foo :-*')