mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
15 lines
491 B
Python
15 lines
491 B
Python
import unittest
|
|
|
|
class TestServerConfig(unittest.TestCase):
|
|
def test___unicode__(self):
|
|
# server_config = ServerConfig()
|
|
# self.assertEqual(expected, server_config.__unicode__())
|
|
assert True # TODO: implement your test here
|
|
|
|
def test_store(self):
|
|
# server_config = ServerConfig()
|
|
# self.assertEqual(expected, server_config.store(key, value))
|
|
assert True # TODO: implement your test here
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|