Kaydet (Commit) 8e8de4af authored tarafından Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Correct test_pydoc for win32 platforms, to account for normalized URLs:

C:\temp => file:///C|temp/
üst b7fea62c
...@@ -214,7 +214,12 @@ class PyDocDocTest(unittest.TestCase): ...@@ -214,7 +214,12 @@ class PyDocDocTest(unittest.TestCase):
def test_html_doc(self): def test_html_doc(self):
result, doc_loc = get_pydoc_html(pydoc_mod) result, doc_loc = get_pydoc_html(pydoc_mod)
mod_file = inspect.getabsfile(pydoc_mod) mod_file = inspect.getabsfile(pydoc_mod)
expected_html = expected_html_pattern % (mod_file, mod_file, doc_loc) if sys.platform == 'win32':
import nturl2path
mod_url = nturl2path.pathname2url(mod_file)
else:
mod_url = mod_file
expected_html = expected_html_pattern % (mod_url, mod_file, doc_loc)
if result != expected_html: if result != expected_html:
print_diffs(expected_html, result) print_diffs(expected_html, result)
self.fail("outputs are not equal, see diff above") self.fail("outputs are not equal, see diff above")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment