Reshuffling the Evennia package into the new template paradigm.

This commit is contained in:
Griatch 2015-01-06 14:53:45 +01:00
parent 2846e64833
commit 2b3a32e447
371 changed files with 17250 additions and 304 deletions

View file

@ -1,64 +0,0 @@
import unittest
class TestObjectDB(unittest.TestCase):
def test___init__(self):
# object_d_b = ObjectDB(*args, **kwargs)
assert True # TODO: implement your test here
def test_clear_contents(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.clear_contents())
assert True # TODO: implement your test here
def test_clear_exits(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.clear_exits())
assert True # TODO: implement your test here
def test_contents_get(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.contents_get(exclude))
assert True # TODO: implement your test here
def test_copy(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.copy(new_key))
assert True # TODO: implement your test here
def test_delete(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.delete())
assert True # TODO: implement your test here
def test_execute_cmd(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.execute_cmd(raw_string, sessid))
assert True # TODO: implement your test here
def test_move_to(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.move_to(destination, quiet, emit_to_obj, use_destination, to_none))
assert True # TODO: implement your test here
def test_msg(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.msg(text, from_obj, sessid, **kwargs))
assert True # TODO: implement your test here
def test_msg_contents(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.msg_contents(message, exclude, from_obj, **kwargs))
assert True # TODO: implement your test here
def test_search(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.search(searchdata, global_search, use_nicks, typeclass, location, attribute_name, quiet, exact))
assert True # TODO: implement your test here
def test_search_player(self):
# object_d_b = ObjectDB(*args, **kwargs)
# self.assertEqual(expected, object_d_b.search_player(searchdata, quiet))
assert True # TODO: implement your test here
if __name__ == '__main__':
unittest.main()