Mercurial > python-hglib
view tests/test-log.py @ 89:351d2799f145
client: added context manager protocol methods
This allows client objects to be used with the 'with' statement and be closed
automatically when the 'with' context exits.
author | Jeff Laughlin <jmlaughlin@integrated-informatics.com> |
---|---|
date | Wed, 23 Nov 2011 09:57:37 -0500 |
parents | b68c444d42bb |
children | c635e6e7054f |
line wrap: on
line source
import common import hglib class test_log(common.basetest): def test_basic(self): self.append('a', 'a') rev0, node0 = self.client.commit('first', addremove=True) self.append('a', 'a') rev1, node1 = self.client.commit('second') revs = self.client.log() revs.reverse() self.assertTrue(len(revs) == 2) self.assertEquals(revs[1].node, node1) self.assertEquals(revs[0], self.client.log('0')[0]) self.assertEquals(self.client.log(), self.client.log(files=['a']))