view tests/test-remove.py @ 126:a7fe976b1931

context: add 'phase' getter This method must be dynamic as the phase can change during the lifetime of the changeset.
author Paul Tonelli <paul.tonelli@logilab.fr>
date Wed, 21 May 2014 12:25:30 +0200
parents b7042bb3dbfd
children 4359cabcb0cc
line wrap: on
line source

import common

class test_remove(common.basetest):
    def test_basic(self):
        self.append('a', 'a')
        self.client.commit('first', addremove=True)
        self.assertTrue(self.client.remove(['a']))

    def test_warnings(self):
        self.append('a', 'a')
        self.client.commit('first', addremove=True)
        self.assertFalse(self.client.remove(['a', 'b']))