Mercurial > python-hglib
view tests/common.py @ 40:238efe4fd7db
client: add pull command
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Mon, 15 Aug 2011 22:46:45 +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()