mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 21:36:30 +01:00
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
import unittest
|
|
|
|
class TestReadBatchfile(unittest.TestCase):
|
|
def test_read_batchfile(self):
|
|
# self.assertEqual(expected, read_batchfile(pythonpath, file_ending))
|
|
assert True # TODO: implement your test here
|
|
|
|
class TestBatchCommandProcessor(unittest.TestCase):
|
|
def test_parse_file(self):
|
|
# batch_command_processor = BatchCommandProcessor()
|
|
# self.assertEqual(expected, batch_command_processor.parse_file(pythonpath))
|
|
assert True # TODO: implement your test here
|
|
|
|
class TestTbFilename(unittest.TestCase):
|
|
def test_tb_filename(self):
|
|
# self.assertEqual(expected, tb_filename(tb))
|
|
assert True # TODO: implement your test here
|
|
|
|
class TestTbIter(unittest.TestCase):
|
|
def test_tb_iter(self):
|
|
# self.assertEqual(expected, tb_iter(tb))
|
|
assert True # TODO: implement your test here
|
|
|
|
class TestBatchCodeProcessor(unittest.TestCase):
|
|
def test_code_exec(self):
|
|
# batch_code_processor = BatchCodeProcessor()
|
|
# self.assertEqual(expected, batch_code_processor.code_exec(codedict, extra_environ, debug))
|
|
assert True # TODO: implement your test here
|
|
|
|
def test_parse_file(self):
|
|
# batch_code_processor = BatchCodeProcessor()
|
|
# self.assertEqual(expected, batch_code_processor.parse_file(pythonpath))
|
|
assert True # TODO: implement your test here
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|