Changeset 278
- Timestamp:
- 17-06-07 16:47:59 (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
moap/test/test_vcs_darcs.py (modified) (1 diff)
-
moap/test/test_vcs_git.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r277 r278 1 2007-06-17 Thomas Vander Stichele <thomas at apestaart dot org> 2 3 * moap/test/test_vcs_darcs.py: 4 * moap/test/test_vcs_git.py: 5 Skip tests if darcs or git are missing. 6 1 7 2007-06-17 Thomas Vander Stichele <thomas at apestaart dot org> 2 8 -
trunk/moap/test/test_vcs_darcs.py
r185 r278 11 11 12 12 class DarcsTestCase(unittest.TestCase): 13 if os.system('darcs') != 0: 14 skip = "No 'darcs' binary, skipping test." 15 13 16 def setUp(self): 14 17 self.repository = tempfile.mkdtemp(prefix="moap.test.repo.") -
trunk/moap/test/test_vcs_git.py
r265 r278 11 11 12 12 class GitTestCase(unittest.TestCase): 13 if os.system('git') != 0: 14 skip = "No 'git' binary, skipping test." 15 13 16 def setUp(self): 14 17 self.repository = tempfile.mkdtemp(prefix="moap.test.repo.")
Note: See TracChangeset
for help on using the changeset viewer.
