From patchwork Thu Nov 15 10:38:39 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [01,of,10,V2] tests: add `revlogutils.deltas` module to doctests From: Boris Feld X-Patchwork-Id: 36591 Message-Id: <41e1b825755ee209effb.1542278319@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Thu, 15 Nov 2018 11:38:39 +0100 # HG changeset patch # User Boris Feld # Date 1542116464 -3600 # Tue Nov 13 14:41:04 2018 +0100 # Node ID 41e1b825755ee209effb3cd997edd680e6cc4145 # Parent acd17caa699a91f7b7c5b8353e209bc0faea3c28 # EXP-Topic sparse-perf # Available At https://bitbucket.org/octobus/mercurial-devel/ # hg pull https://bitbucket.org/octobus/mercurial-devel/ -r 41e1b825755e tests: add `revlogutils.deltas` module to doctests The doctest in these module have been from `mercurial.revlog` but the module was not added to the doctests. Spotted by Yuya Nishihara. diff --git a/tests/test-doctest.py b/tests/test-doctest.py --- a/tests/test-doctest.py +++ b/tests/test-doctest.py @@ -61,6 +61,7 @@ testmod('mercurial.pathutil') testmod('mercurial.parser') testmod('mercurial.pycompat') testmod('mercurial.revlog') +testmod('mercurial.revlogutils.deltas') testmod('mercurial.revsetlang') testmod('mercurial.smartset') testmod('mercurial.store')