Mercurial > python-hglib
view tests/test-init.py @ 76:37307caccf54
add a script to run tests with nose plugins loaded
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Sat, 15 Oct 2011 20:09:59 +0200 |
parents | ce516ed9bc0d |
children | 07efbd3bd09a |
line wrap: on
line source
import hglib, common, shutil class test_init(common.basetest): def test_exists(self): self.assertRaises(hglib.error.CommandError, hglib.init) def test_basic(self): self.client.close() self.client = None shutil.rmtree('.hg') self.client = hglib.init() self.assertTrue(self.client.root().endswith('test_init'))