about summary refs log tree commit diff stats
path: root/dwm.1
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-21 13:24:37 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-21 13:24:37 +0100
commit7ae0c198b36d638a0c787709efcc50fdf6d117ea (patch)
treee55aa11b0de6ce138b71e8dfb0a2236045695a4e /dwm.1
parentdc6623728d1383bf4f04dc3fc6c210490ebb30aa (diff)
downloaddwm-7ae0c198b36d638a0c787709efcc50fdf6d117ea.tar.gz
switching to urxvtcd for the moment (the uxterm flicker makes me headaches, st is really highest prio now)
Diffstat (limited to 'dwm.1')
0 files changed, 0 insertions, 0 deletions
 



                                                                                       
 

                                                                  
#!/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)