comparison tests/test_svnwrap.py @ 1106:5cb6c95e0283 stable

Merge default and stable so I can do stable releases again.
author Augie Fackler <raf@durin42.com>
date Tue, 11 Feb 2014 12:48:49 -0500
parents d741f536f23a
children 019c3e194fba
comparison
equal deleted inserted replaced
1020:b5b1fce26f1f 1106:5cb6c95e0283
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)