view tests/test-resolve.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 939d1d763bb1
children 1b47146a4a2c
line wrap: on
line source

import common, hglib

class test_resolve(common.basetest):
    def setUp(self):
        common.basetest.setUp(self)

        self.append('a', 'a')
        self.append('b', 'b')
        rev, self.node0 = self.client.commit('first', addremove=True)

        self.append('a', 'a')
        self.append('b', 'b')
        rev, self.node1 = self.client.commit('second')

    def test_basic(self):
        self.client.update(self.node0)
        self.append('a', 'b')
        self.append('b', 'a')
        rev, self.node3 = self.client.commit('third')

        self.assertRaises(hglib.error.CommandError, self.client.merge, self.node1)
        self.assertRaises(hglib.error.CommandError, self.client.resolve, all=True)

        self.assertEquals([('U', 'a'), ('U', 'b')],
                          self.client.resolve(listfiles=True))

        self.client.resolve('a', mark=True)
        self.assertEquals([('R', 'a'), ('U', 'b')],
                          self.client.resolve(listfiles=True))