Changeset 281
- Timestamp:
- 24-06-07 21:44:25 (6 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
ChangeLog (modified) (1 diff)
-
moap/test/test_vcs_bzr.py (modified) (1 diff)
-
moap/test/test_vcs_cvs.py (modified) (1 diff)
-
moap/test/test_vcs_darcs.py (modified) (1 diff)
-
moap/test/test_vcs_git.py (modified) (1 diff)
-
moap/test/test_vcs_svn.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r280 r281 1 2007-06-24 Thomas Vander Stichele <thomas at apestaart dot org> 2 3 * moap/test/test_vcs_bzr.py: 4 * moap/test/test_vcs_cvs.py: 5 * moap/test/test_vcs_darcs.py: 6 * moap/test/test_vcs_git.py: 7 * moap/test/test_vcs_svn.py: 8 Fix finding the binaries. 9 1 10 2007-06-24 Thomas Vander Stichele <thomas at apestaart dot org> 2 11 -
trunk/moap/test/test_vcs_bzr.py
r279 r281 11 11 12 12 class BzrTestCase(unittest.TestCase): 13 if os.system('bzr > /dev/null 2>&1') != 0:13 if os.system('bzr --version > /dev/null 2>&1') != 0: 14 14 skip = "No 'bzr' binary, skipping test." 15 15 -
trunk/moap/test/test_vcs_cvs.py
r279 r281 11 11 12 12 class CVSTestCase(unittest.TestCase): 13 if os.system('cvs > /dev/null 2>&1') != 0:13 if os.system('cvs --version > /dev/null 2>&1') != 0: 14 14 skip = "No 'cvs' binary, skipping test." 15 15 -
trunk/moap/test/test_vcs_darcs.py
r279 r281 11 11 12 12 class DarcsTestCase(unittest.TestCase): 13 if os.system('darcs > /dev/null 2>&1') != 0:13 if os.system('darcs --version > /dev/null 2>&1') != 0: 14 14 skip = "No 'darcs' binary, skipping test." 15 15 -
trunk/moap/test/test_vcs_git.py
r279 r281 11 11 12 12 class GitTestCase(unittest.TestCase): 13 if os.system('git > /dev/null 2>&1') != 0:13 if os.system('git --version > /dev/null 2>&1') != 0: 14 14 skip = "No 'git' binary, skipping test." 15 15 -
trunk/moap/test/test_vcs_svn.py
r279 r281 11 11 12 12 class SVNTestCase(common.SVNTestCase): 13 if os.system('svn > /dev/null 2>&1') != 0:13 if os.system('svn --version > /dev/null 2>&1') != 0: 14 14 skip = "No 'svn' binary, skipping test." 15 15
Note: See TracChangeset
for help on using the changeset viewer.
