tests/test-match.py
author Durham Goode <durham@fb.com>
Mon, 11 Sep 2017 15:59:18 -0700
branchstable
changeset 33677 1908dc958639
parent 33582 44bc181b9835
child 38991 987d3a4b989f
permissions -rw-r--r--
ssh: fix flakey ssh errors on BSD systems This is a trivial backport of c037fd655b47 performed by augie@google.com, but the change is still really Durham's not mine, so I [augie] am leaving him as the author.

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