Mercurial > evolve
comparison tests/test-doctest.py @ 6236:7ad8107d953a
topic: introduce topic namespaces concept starting with simple parsing
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Tue, 03 May 2022 21:35:28 +0400 |
parents | 318b81560f8c |
children | 16fd24f6cf22 |
comparison
equal
deleted
inserted
replaced
6235:318b81560f8c | 6236:7ad8107d953a |
---|---|
108 # Each item in the set is a 2-tuple of module name and stringified kwargs passed | 108 # Each item in the set is a 2-tuple of module name and stringified kwargs passed |
109 # to testmod. | 109 # to testmod. |
110 expected_mods_tested = set( | 110 expected_mods_tested = set( |
111 [ | 111 [ |
112 ('hgext3rd.evolve.obshistory', '{}'), | 112 ('hgext3rd.evolve.obshistory', '{}'), |
113 ('hgext3rd.topic.common', '{}'), | |
113 ] | 114 ] |
114 ) | 115 ) |
115 | 116 |
116 unexpectedly_run = mods_tested.difference(expected_mods_tested) | 117 unexpectedly_run = mods_tested.difference(expected_mods_tested) |
117 not_run = expected_mods_tested.difference(mods_tested) | 118 not_run = expected_mods_tested.difference(mods_tested) |