Mercurial > public > mercurial-scm > python-hglib
view tests/test-log.py @ 122:e05b0cf920bb
client: implement the 'in' keyword for a client object
Check if a revision number or a changeset hex matches a changeset in the client
repository. The internal tries to create a ctx object. Returns False If the ctx
creation fails.
This patch also adds the corresponding tests.
author | Paul Tonelli <paul.tonelli@logilab.fr> |
---|---|
date | Wed, 30 Apr 2014 16:44:59 +0200 |
parents | 5d3783aebe5f |
children | 1b47146a4a2c |
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'])) self.assertEquals(self.client.log(), self.client.log(hidden=True)) # def test_errors(self): # self.assertRaisesRegexp(CommandError, 'abort: unknown revision', self.client.log, 'foo') # self.append('a', 'a') # self.client.commit('first', addremove=True) # self.assertRaisesRegexp(CommandError, 'abort: unknown revision', self.client.log, 'bar')