Sophie

Sophie

distrib > PLD > ac > amd64 > media > dist > by-pkgid > 907e63cf471523ddf7adab61d948a8e1 > files > 7

python-dispatch-examples-1.0.2-4.noarch.rpm

import unittest
from dispatch.tests import test_dispatcher,test_robustapply, test_saferef

def getSuite():
	set = []
	for module in [
		test_dispatcher,
		test_robustapply,
		test_saferef,
	]:
		set.append( module.getSuite() )
	return unittest.TestSuite(
		set
	)

if __name__ == "__main__":
	unittest.main(defaultTest="getSuite")