Mercurial > public > mercurial-scm > python-hglib
view tests/test-log.py @ 127:53387d1e620b
client: connect to repo if necessary when using "with" statement
While the '__exit__' closes the connection to the server, the __enter__ method
does not open it. Without this patch, a disconnected repo cannot be used with a
context managed unless you explicitely call the "open" method.
author | Paul Tonelli <paul.tonelli@logilab.fr> |
---|---|
date | Mon, 16 Jun 2014 18:29:06 +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')