comparison tests/test_fetch_renames.py @ 1044:d741f536f23a

tests: remove old test-loading infrastructure (for those in the know, this is known as a suitectomy)
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Wed, 07 Aug 2013 16:00:52 +0200
parents d6db289f1548
children dc516f85b6c3
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
74 def test_case(self): 74 def test_case(self):
75 self._test_case(False) 75 self._test_case(False)
76 76
77 def test_case_stupid(self): 77 def test_case_stupid(self):
78 self._test_case(True) 78 self._test_case(True)
79
80 def suite():
81 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestFetchRenames),
82 ]
83 return unittest.TestSuite(all_tests)