Mercurial > hg
diff tests/test-doctest.py @ 37183:ded5ea279a93
fix: new extension for automatically modifying file contents
This change implements most of the corresponding proposal as discussed at the
4.4 and 4.6 sprints: https://www.mercurial-scm.org/wiki/AutomaticFormattingPlan
This change notably does not include parallel execution of the formatter/fixer
tools. It does allow for implementing that without affecting other areas of the
code.
I believe the test coverage to be good, but this is a hotbed of corner cases.
Differential Revision: https://phab.mercurial-scm.org/D2897
author | Danny Hooper <hooper@google.com> |
---|---|
date | Sat, 03 Mar 2018 14:08:44 -0800 |
parents | f99d64e8a4e4 |
children | 740f7d447222 |
line wrap: on
line diff
--- a/tests/test-doctest.py Fri Mar 30 11:11:42 2018 -0700 +++ b/tests/test-doctest.py Sat Mar 03 14:08:44 2018 -0800 @@ -76,6 +76,7 @@ testmod('hgext.convert.filemap') testmod('hgext.convert.p4') testmod('hgext.convert.subversion') +testmod('hgext.fix') testmod('hgext.mq') # Helper scripts in tests/ that have doctests: testmod('drawdag')