mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 20:47:17 +02:00
16 lines
491 B
Python
16 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()
|