Mercurial > python-hglib
view tests/test-clone.py @ 147:98829bf71f10
util: define BytesIO in one place
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 13 Mar 2015 12:28:06 -0500 |
parents | 4359cabcb0cc |
children | c1b966866ed7 |
line wrap: on
line source
import os import common import hglib from hglib.util import b class test_clone(common.basetest): def test_basic(self): self.append('a', 'a') self.client.commit(b('first'), addremove=True) cloned = hglib.clone(b('.'), b('cloned')) self.assertRaises(ValueError, cloned.log) cloned.open() self.assertEquals(self.client.log(), cloned.log())