comparison tests/test_svnwrap.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 f2de043ac924
children 019c3e194fba
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
55 stderr=subprocess.STDOUT) 55 stderr=subprocess.STDOUT)
56 assert ret == 0 56 assert ret == 0
57 self.repo = svnwrap.SubversionRepo(test_util.fileurl( 57 self.repo = svnwrap.SubversionRepo(test_util.fileurl(
58 self.repo_path + '/dummyproj' 58 self.repo_path + '/dummyproj'
59 )) 59 ))
60
61 def suite():
62 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestBasicRepoLayout),
63 unittest.TestLoader().loadTestsFromTestCase(TestRootAsSubdirOfRepo)]
64 return unittest.TestSuite(all_tests)