Mercurial > python-hglib
view tests/test-copy.py @ 62:d1f57f162274
closefds on posix when using subprocess
see added test for a clarification on why this is needed
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Fri, 19 Aug 2011 22:24:14 +0300 |
parents | f6e1d9a6e0cd |
children | 4359cabcb0cc |
line wrap: on
line source
import common import hglib class test_copy(common.basetest): def test_basic(self): self.append('a', 'a') self.client.commit('first', addremove=True) self.assertTrue(self.client.copy('a', 'b')) self.assertEquals(self.client.status(), [('A', 'b')]) self.append('c', 'a') self.assertTrue(self.client.copy('a', 'c', after=True)) self.assertEquals(self.client.status(), [('A', 'b'), ('A', 'c')]) # hg returns 0 even if there were warnings #def test_warnings(self): # self.append('a', 'a') # self.client.commit('first', addremove=True) # self.assertTrue(self.client.copy('a', 'b')) # self.assertFalse(self.client.copy('a', 'b'))