comparison tests/test_fetch_branches.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 3df6ed4e7561
children 903c9c9dfe6a
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
159 for f in ctx: 159 for f in ctx:
160 self.assertTrue(not ctx[f].renamed()) 160 self.assertTrue(not ctx[f].renamed())
161 161
162 def test_replace_branch_with_branch_stupid(self, stupid=False): 162 def test_replace_branch_with_branch_stupid(self, stupid=False):
163 self.test_replace_branch_with_branch(True) 163 self.test_replace_branch_with_branch(True)
164
165 def suite():
166 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestFetchBranches),
167 ]
168 return unittest.TestSuite(all_tests)