Mercurial > python-hglib
view tests/common.py @ 14:e0d21c9db20b
client: use --debug when committing to get the new node info
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Wed, 10 Aug 2011 19:59:03 +0300 |
parents | eac8be119d81 |
children | 3d413c54e048 |
line wrap: on
line source
import os, sys, tempfile, shutil import unittest import hglib class basetest(unittest.TestCase): def setUp(self): self._testtmp = os.environ["TESTTMP"] = os.environ["HOME"] = \ os.path.join(os.environ["HGTMP"], self.__class__.__name__) os.mkdir(self._testtmp) os.chdir(self._testtmp) # until we can run norepo commands in the cmdserver os.system('hg init') self.client = hglib.open() def tearDown(self): shutil.rmtree(self._testtmp) def append(self, path, *args): f = open(path, 'a') for a in args: f.write(str(a)) f.close()