mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 15:07:16 +02:00
20 lines
635 B
Python
20 lines
635 B
Python
|
|
import unittest
|
||
|
|
|
||
|
|
class TestScriptDB(unittest.TestCase):
|
||
|
|
def test___init__(self):
|
||
|
|
# script_d_b = ScriptDB(*args, **kwargs)
|
||
|
|
assert True # TODO: implement your test here
|
||
|
|
|
||
|
|
def test_at_typeclass_error(self):
|
||
|
|
# script_d_b = ScriptDB(*args, **kwargs)
|
||
|
|
# self.assertEqual(expected, script_d_b.at_typeclass_error())
|
||
|
|
assert True # TODO: implement your test here
|
||
|
|
|
||
|
|
def test_delete(self):
|
||
|
|
# script_d_b = ScriptDB(*args, **kwargs)
|
||
|
|
# self.assertEqual(expected, script_d_b.delete())
|
||
|
|
assert True # TODO: implement your test here
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
unittest.main()
|