tests/test-match.py
author Yuya Nishihara <yuya@tcha.org>
Wed, 04 Apr 2018 20:51:49 +0900
changeset 38212 0b932b43868f
parent 33582 44bc181b9835
child 38953 987d3a4b989f
permissions -rw-r--r--
hgweb: wrap {topics}es of help with mappinggenerator or mappinglist The former 'topics' was a generator function, and the latter was a list of mappings.

from __future__ import absolute_import

import unittest

import silenttestrunner

from mercurial import (
    match as matchmod,
)

class NeverMatcherTests(unittest.TestCase):

    def testVisitdir(self):
        m = matchmod.nevermatcher('', '')
        self.assertFalse(m.visitdir('.'))
        self.assertFalse(m.visitdir('dir'))

if __name__ == '__main__':
    silenttestrunner.main(__name__)