Reshuffling the Evennia package into the new template paradigm.
This commit is contained in:
parent
2846e64833
commit
2b3a32e447
371 changed files with 17250 additions and 304 deletions
|
|
@ -1,74 +0,0 @@
|
|||
import unittest
|
||||
|
||||
class test__CmdSetMeta(unittest.TestCase):
|
||||
def test___init__(self):
|
||||
# __cmd_set_meta = _CmdSetMeta(*args, **kwargs)
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
class TestCmdSet(unittest.TestCase):
|
||||
def test___add__(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.__add__(cmdset_b))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test___contains__(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.__contains__(othercmd))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test___init__(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test___iter__(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.__iter__())
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test___str__(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.__str__())
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_add(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.add(cmd))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_at_cmdset_creation(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.at_cmdset_creation())
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_count(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.count())
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_get(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.get(cmd))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_get_all_cmd_keys_and_aliases(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.get_all_cmd_keys_and_aliases(caller))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_get_system_cmds(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.get_system_cmds())
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_make_unique(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.make_unique(caller))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_remove(self):
|
||||
# cmd_set = CmdSet(cmdsetobj, key)
|
||||
# self.assertEqual(expected, cmd_set.remove(cmd))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue