Mercurial > hgsubversion
comparison tests/test_utility_commands.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 | 6945d3359456 |
children | 8f3a241b790d |
comparison
equal
deleted
inserted
replaced
1043:69a9fb45cad5 | 1044:d741f536f23a |
---|---|
339 svncommands.rebuildmeta, | 339 svncommands.rebuildmeta, |
340 self.ui(), repo=self.repo, args=[otherurl]) | 340 self.ui(), repo=self.repo, args=[otherurl]) |
341 # rebuildmeta --unsafe-skip-uuid-check with unrelated repo | 341 # rebuildmeta --unsafe-skip-uuid-check with unrelated repo |
342 svncommands.rebuildmeta(self.ui(), repo=self.repo, args=[otherurl], | 342 svncommands.rebuildmeta(self.ui(), repo=self.repo, args=[otherurl], |
343 unsafe_skip_uuid_check=True) | 343 unsafe_skip_uuid_check=True) |
344 | |
345 def suite(): | |
346 all_tests = [unittest.TestLoader().loadTestsFromTestCase(UtilityTests), | |
347 ] | |
348 return unittest.TestSuite(all_tests) |