comparison tests/test_unaffected_core.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 312b37bc5e20
children 903c9c9dfe6a
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
84 '--branch', branch]) 84 '--branch', branch])
85 85
86 repo2 = hg.repository(ui, self.wc_path + '2') 86 repo2 = hg.repository(ui, self.wc_path + '2')
87 87
88 self.assertEqual(repo[branch].hex(), repo2['.'].hex()) 88 self.assertEqual(repo[branch].hex(), repo2['.'].hex())
89
90 def suite():
91 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestMercurialCore)]
92 return unittest.TestSuite(all_tests)