view tests/test_remove.py @ 223:3f9dd44be8c2

hglib setup.py: clearly indicate supported Python versions
author Mathias De Mare <mathias.de_mare@nokia.com>
date Thu, 09 Mar 2023 16:18:54 +0100
parents 8341f2494b3f
children
line wrap: on
line source

from tests import common
from hglib.util import b

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

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