File: test-forget.py

package info (click to toggle)
python-hglib 2.6.2-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: python: 3,245; makefile: 20
file content (14 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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')]))