mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 13:07:16 +02:00
Added auto-created empty unittest definitions.
This commit is contained in:
parent
440afe6928
commit
bb7b73b7c2
48 changed files with 3577 additions and 0 deletions
14
src/tests/test_commands_cmdhandler.py
Normal file
14
src/tests/test_commands_cmdhandler.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import unittest
|
||||
|
||||
class TestGetAndMergeCmdsets(unittest.TestCase):
|
||||
def test_get_and_merge_cmdsets(self):
|
||||
# self.assertEqual(expected, get_and_merge_cmdsets(caller, session, player, obj, callertype, sessid))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
class TestCmdhandler(unittest.TestCase):
|
||||
def test_cmdhandler(self):
|
||||
# self.assertEqual(expected, cmdhandler(called_by, raw_string, testing, callertype, sessid))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue