Added auto-created empty unittest definitions.

This commit is contained in:
Griatch 2014-03-16 11:14:38 +01:00
parent 440afe6928
commit bb7b73b7c2
48 changed files with 3577 additions and 0 deletions

View 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()