comparison tests/test_push_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 a279b5838aaf
children 2d7398fffd0d
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
111 assert reduce(lambda x, y: x and y, 111 assert reduce(lambda x, y: x and y,
112 ('geek' not in f for f in test_util.svnls(self.repo_path, 'trunk'))), ( 112 ('geek' not in f for f in test_util.svnls(self.repo_path, 'trunk'))), (
113 'This failure means rename of an entire tree is broken.' 113 'This failure means rename of an entire tree is broken.'
114 ' There is a print on the preceding line commented out ' 114 ' There is a print on the preceding line commented out '
115 'that should help you.') 115 'that should help you.')
116
117
118 def suite():
119 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestPushRenames),
120 ]
121 return unittest.TestSuite(all_tests)