view tests/test-forget.py @ 193:32e8d51ec16c

util: make cmdbuilder() robust for faulty parsing of early options Also fixed handling of positional arguments.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 11 Nov 2017 19:52:48 +0900
parents c1b966866ed7
children
line wrap: on
line source

from tests import common
from hglib.util import b

class test_forget(common.basetest):
    def test_basic(self):
        self.append('a', 'a')
        self.client.add([b('a')])
        self.assertTrue(self.client.forget(b('a')))

    def test_warnings(self):
        self.assertFalse(self.client.forget(b('a')))
        self.append('a', 'a')
        self.client.add([b('a')])
        self.assertFalse(self.client.forget([b('a'), b('b')]))