comparison tests/test_single_dir_clone.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 c6388ed0ec0a
children 3092b3c109a8
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
272 set(self.repo[i].branch() for i in self.repo)) 272 set(self.repo[i].branch() for i in self.repo))
273 273
274 @test_util.requiresoption('branch') 274 @test_util.requiresoption('branch')
275 def test_push_single_dir_renamed_branch_stupid(self): 275 def test_push_single_dir_renamed_branch_stupid(self):
276 self.test_push_single_dir_renamed_branch(True) 276 self.test_push_single_dir_renamed_branch(True)
277
278 def suite():
279 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestSingleDir)]
280 return unittest.TestSuite(all_tests)