mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Add testcase for sphinx.util.docstrings
This commit is contained in:
parent
57667b5766
commit
b1f80427a7
65
tests/test_util_docstrings.py
Normal file
65
tests/test_util_docstrings.py
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
test_util_docstrings
|
||||||
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Test sphinx.util.docstrings.
|
||||||
|
|
||||||
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
||||||
|
:license: BSD, see LICENSE for details.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from sphinx.util.docstrings import prepare_docstring, prepare_commentdoc
|
||||||
|
|
||||||
|
|
||||||
|
def test_prepare_docstring():
|
||||||
|
docstring = """multiline docstring
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
|
||||||
|
sed do eiusmod tempor incididunt ut labore et dolore magna
|
||||||
|
aliqua::
|
||||||
|
|
||||||
|
Ut enim ad minim veniam, quis nostrud exercitation
|
||||||
|
ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||||
|
"""
|
||||||
|
|
||||||
|
assert (prepare_docstring(docstring) ==
|
||||||
|
["multiline docstring",
|
||||||
|
"",
|
||||||
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit,",
|
||||||
|
"sed do eiusmod tempor incididunt ut labore et dolore magna",
|
||||||
|
"aliqua::",
|
||||||
|
"",
|
||||||
|
" Ut enim ad minim veniam, quis nostrud exercitation",
|
||||||
|
" ullamco laboris nisi ut aliquip ex ea commodo consequat.",
|
||||||
|
""])
|
||||||
|
assert (prepare_docstring(docstring, 5) ==
|
||||||
|
["multiline docstring",
|
||||||
|
"",
|
||||||
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit,",
|
||||||
|
"sed do eiusmod tempor incididunt ut labore et dolore magna",
|
||||||
|
"aliqua::",
|
||||||
|
"",
|
||||||
|
"Ut enim ad minim veniam, quis nostrud exercitation",
|
||||||
|
" ullamco laboris nisi ut aliquip ex ea commodo consequat.",
|
||||||
|
""])
|
||||||
|
|
||||||
|
docstring = """
|
||||||
|
|
||||||
|
multiline docstring with leading empty lines
|
||||||
|
"""
|
||||||
|
assert (prepare_docstring(docstring) ==
|
||||||
|
["multiline docstring with leading empty lines",
|
||||||
|
""])
|
||||||
|
|
||||||
|
docstring = "single line docstring"
|
||||||
|
assert (prepare_docstring(docstring) ==
|
||||||
|
["single line docstring",
|
||||||
|
""])
|
||||||
|
|
||||||
|
|
||||||
|
def test_prepare_commentdoc():
|
||||||
|
assert prepare_commentdoc("hello world") == []
|
||||||
|
assert prepare_commentdoc("#: hello world") == ["hello world", ""]
|
||||||
|
assert prepare_commentdoc("#: hello world") == [" hello world", ""]
|
||||||
|
assert prepare_commentdoc("#: hello\n#: world\n") == ["hello", "world", ""]
|
Loading…
Reference in New Issue
Block a user