about summary refs log tree commit diff stats
path: root/310copy-bytes.subx
Commit message (Expand)AuthorAgeFilesLines
* 7254Kartik Agaram2020-11-171-1/+2
* 7115Kartik Agaram2020-10-261-8/+8
* 7101 - tile: remove quotes when evaluating stringsKartik Agaram2020-10-251-0/+41
* 6860Kartik Agaram2020-09-261-0/+58
* 6742 - support for formatting in fake screensKartik Agaram2020-09-071-0/+57
a3'>084a0743 ^
22449efd ^

1
2
3
4
5
6
7
8
9
10
11
12
13
                  



                                                                   
 



                                                                                       
 

                                                                  
#!/usr/bin/python3
"""Run all the tests inside the test/ directory as a test suite."""
if __name__ == '__main__':
	import unittest
	from test import *

	tests = []
	for key, val in vars().copy().items():
		if key.startswith('tc_'):
			tests.extend(v for k,v in vars(val).items() if type(v) == type)

	suite = unittest.TestSuite(map(unittest.makeSuite, tests))
	unittest.TextTestRunner(verbosity=2).run(suite)