Example #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?")
Example #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 :-*")
Example #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")
Example #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 :-*")
Example #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?')
Example #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')
Example #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 :-*')
Example #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 :-*')