Changeset 281


Ignore:
Timestamp:
24-06-07 21:44:25 (6 years ago)
Author:
thomas
Message:
  • moap/test/test_vcs_bzr.py:
  • moap/test/test_vcs_cvs.py:
  • moap/test/test_vcs_darcs.py:
  • moap/test/test_vcs_git.py:
  • moap/test/test_vcs_svn.py: Fix finding the binaries.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r280 r281  
     12007-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 
    1102007-06-24  Thomas Vander Stichele  <thomas at apestaart dot org> 
    211 
  • trunk/moap/test/test_vcs_bzr.py

    r279 r281  
    1111 
    1212class BzrTestCase(unittest.TestCase): 
    13     if os.system('bzr > /dev/null 2>&1') != 0: 
     13    if os.system('bzr --version > /dev/null 2>&1') != 0: 
    1414        skip = "No 'bzr' binary, skipping test." 
    1515 
  • trunk/moap/test/test_vcs_cvs.py

    r279 r281  
    1111 
    1212class CVSTestCase(unittest.TestCase): 
    13     if os.system('cvs > /dev/null 2>&1') != 0: 
     13    if os.system('cvs --version > /dev/null 2>&1') != 0: 
    1414        skip = "No 'cvs' binary, skipping test." 
    1515 
  • trunk/moap/test/test_vcs_darcs.py

    r279 r281  
    1111 
    1212class DarcsTestCase(unittest.TestCase): 
    13     if os.system('darcs > /dev/null 2>&1') != 0: 
     13    if os.system('darcs --version > /dev/null 2>&1') != 0: 
    1414        skip = "No 'darcs' binary, skipping test." 
    1515 
  • trunk/moap/test/test_vcs_git.py

    r279 r281  
    1111 
    1212class GitTestCase(unittest.TestCase): 
    13     if os.system('git > /dev/null 2>&1') != 0: 
     13    if os.system('git --version > /dev/null 2>&1') != 0: 
    1414        skip = "No 'git' binary, skipping test." 
    1515 
  • trunk/moap/test/test_vcs_svn.py

    r279 r281  
    1111 
    1212class SVNTestCase(common.SVNTestCase): 
    13     if os.system('svn > /dev/null 2>&1') != 0: 
     13    if os.system('svn --version > /dev/null 2>&1') != 0: 
    1414        skip = "No 'svn' binary, skipping test." 
    1515 
Note: See TracChangeset for help on using the changeset viewer.