mirror of
https://github.com/evennia/evennia.git
synced 2026-03-27 10:16:32 +01:00
Added auto-created empty unittest definitions.
This commit is contained in:
parent
440afe6928
commit
bb7b73b7c2
48 changed files with 3577 additions and 0 deletions
19
src/tests/test_scripts_models.py
Normal file
19
src/tests/test_scripts_models.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue