diff tests/test-dirs.py @ 43523:c21aca51b392

utils: move the `dirs` definition in pathutil (API) Before this change, the `dirs` class was accessible through the `mercurial.util` module. That module is expected to stay free of scm specific content. The `pathutil` destination has been selection by Martin von Zweigbergk. This work is part of a refactoring to unify the revlog index and the nodemap. This unification prepare the use of a persistent nodemap. Differential Revision: https://phab.mercurial-scm.org/D7311
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 06 Nov 2019 14:13:19 +0100
parents 5d40317d42b7
children 627cd8f33db0
line wrap: on
line diff
--- a/tests/test-dirs.py	Wed Oct 23 12:15:42 2019 -0700
+++ b/tests/test-dirs.py	Wed Nov 06 14:13:19 2019 +0100
@@ -4,7 +4,7 @@
 
 import silenttestrunner
 
-from mercurial import util
+from mercurial import pathutil
 
 
 class dirstests(unittest.TestCase):
@@ -13,13 +13,13 @@
             (b'a/a/a', [b'a', b'a/a', b'']),
             (b'alpha/beta/gamma', [b'', b'alpha', b'alpha/beta']),
         ]:
-            d = util.dirs({})
+            d = pathutil.dirs({})
             d.addpath(case)
             self.assertEqual(sorted(d), sorted(want))
 
     def testinvalid(self):
         with self.assertRaises(ValueError):
-            d = util.dirs({})
+            d = pathutil.dirs({})
             d.addpath(b'a//b')