tests/test-match.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 25 Feb 2018 16:14:37 +0900
changeset 36521 c3692364b344
parent 33582 44bc181b9835
child 38953 987d3a4b989f
permissions -rw-r--r--
templatekw: add compatlist() as a replacement for showlist() Just like compatdict(), this is mostly a copy of showlist(). showchildren() is ported to the new API as an example.

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__)