diff options
Diffstat (limited to 'tests/roots/test-ext-doctest-with-autodoc/dir')
-rw-r--r-- | tests/roots/test-ext-doctest-with-autodoc/dir/__init__.py | 0 | ||||
-rw-r--r-- | tests/roots/test-ext-doctest-with-autodoc/dir/bar.py | 4 | ||||
-rw-r--r-- | tests/roots/test-ext-doctest-with-autodoc/dir/inner.rst | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/tests/roots/test-ext-doctest-with-autodoc/dir/__init__.py b/tests/roots/test-ext-doctest-with-autodoc/dir/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/roots/test-ext-doctest-with-autodoc/dir/__init__.py diff --git a/tests/roots/test-ext-doctest-with-autodoc/dir/bar.py b/tests/roots/test-ext-doctest-with-autodoc/dir/bar.py new file mode 100644 index 0000000..122fdf7 --- /dev/null +++ b/tests/roots/test-ext-doctest-with-autodoc/dir/bar.py @@ -0,0 +1,4 @@ +""" +>>> 'dir/bar.py:2' + +""" diff --git a/tests/roots/test-ext-doctest-with-autodoc/dir/inner.rst b/tests/roots/test-ext-doctest-with-autodoc/dir/inner.rst new file mode 100644 index 0000000..b2ee47f --- /dev/null +++ b/tests/roots/test-ext-doctest-with-autodoc/dir/inner.rst @@ -0,0 +1,4 @@ +>>> 'dir/inner.rst:1' + +.. automodule:: dir.bar + :members: |