tests/test-match.py
author Yuya Nishihara <yuya@tcha.org>
Thu, 22 Sep 2016 19:40:07 +0900
changeset 35309 d36eda8896cc
parent 33582 44bc181b9835
child 38991 987d3a4b989f
permissions -rw-r--r--
revset: alias follow(startrev=rev) to ancestors(rev) This seems natural given 'log -frREV' (with no file pattern) is equivalent to 'log -frREV *'.

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