Esempio n. 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?")
Esempio n. 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 :-*")
Esempio n. 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")
Esempio n. 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 :-*")
Esempio n. 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?')
Esempio n. 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')
Esempio n. 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 :-*')
Esempio n. 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 :-*')