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,39 +0,0 @@
import unittest
class TestEvennia(unittest.TestCase):
def test___init__(self):
# evennia = Evennia(application)
assert True # TODO: implement your test here
def test_run_init_hooks(self):
# evennia = Evennia(application)
# self.assertEqual(expected, evennia.run_init_hooks())
assert True # TODO: implement your test here
def test_run_initial_setup(self):
# evennia = Evennia(application)
# self.assertEqual(expected, evennia.run_initial_setup())
assert True # TODO: implement your test here
def test_set_restart_mode(self):
# evennia = Evennia(application)
# self.assertEqual(expected, evennia.set_restart_mode(mode))
assert True # TODO: implement your test here
def test_shutdown(self):
# evennia = Evennia(application)
# self.assertEqual(expected, evennia.shutdown(mode, _reactor_stopping))
assert True # TODO: implement your test here
def test_sqlite3_prep(self):
# evennia = Evennia(application)
# self.assertEqual(expected, evennia.sqlite3_prep())
assert True # TODO: implement your test here
def test_update_defaults(self):
# evennia = Evennia(application)
# self.assertEqual(expected, evennia.update_defaults())
assert True # TODO: implement your test here
if __name__ == '__main__':
unittest.main()