Mercurial > python-hglib
diff tests/test-outgoing-incoming.py @ 7:eac8be119d81
tests: rearrange tests and use nosetests
- provide package setup/teardown methods that fixes the environment
- introduce a basetest that initializes a repository in a temp dir
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Sat, 23 Jul 2011 22:55:39 +0300 |
parents | |
children | f1af31960414 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-outgoing-incoming.py Sat Jul 23 22:55:39 2011 +0300 @@ -0,0 +1,24 @@ +import common +import hglib + +class test_outgoing_incoming(common.basetest): + def test_basic(self): + self.append('a', 'a') + self.client.commit('first', addremove=True) + self.append('a', 'a') + self.client.commit('second') + + self.client.clone(dest='bar') + bar = hglib.open('bar') + + self.assertEquals(self.client.log(), bar.log()) + self.assertEquals(self.client.outgoing(path='bar'), bar.incoming()) + + self.append('a', 'a') + rev = self.client.commit('third') + out = self.client.outgoing(path='bar') + + self.assertEquals(len(out), 1) + self.assertEquals(out[0], rev) + + self.assertEquals(out, bar.incoming())