BlockIt
|
00001 import unittest 00002 from blockit import * 00003 00004 class TestFuncs(unittest.TestCase): 00005 00006 def setUp(self): 00007 pass 00008 00009 def tearDown(self): 00010 pass 00011 00012 def testParseTemplateSpecString(self): 00013 pass 00014 00015 def testExplodeToList(self): 00016 pass 00017 00018 def testMerge(self): 00019 pass 00020 00021 def testCombine(self): 00022 pass 00023 00024 def testDepGraph(self): 00025 pass 00026 00027 def testTopoSort(self): 00028 pass 00029 00030 if __name__ == '__main__': 00031 suite = unittest.TestLoader().loadTestsFromTestCase(TestFuncs) 00032 unittest.TextTestRunner(verbosity=2).run(suite) 00033 00034