diff options
Diffstat (limited to 'tests/roots')
-rw-r--r-- | tests/roots/test-basic/bar.rst | 2 | ||||
-rw-r--r-- | tests/roots/test-basic/conf.py | 4 | ||||
-rw-r--r-- | tests/roots/test-basic/foo.rst | 6 | ||||
-rw-r--r-- | tests/roots/test-basic/index.rst | 12 | ||||
-rw-r--r-- | tests/roots/test-empty/conf.py | 4 | ||||
-rw-r--r-- | tests/roots/test-empty/index.rst | 10 | ||||
-rw-r--r-- | tests/roots/test-missing-toctree/conf.py | 4 | ||||
-rw-r--r-- | tests/roots/test-missing-toctree/index.rst | 2 |
8 files changed, 44 insertions, 0 deletions
diff --git a/tests/roots/test-basic/bar.rst b/tests/roots/test-basic/bar.rst new file mode 100644 index 0000000..1cccd3c --- /dev/null +++ b/tests/roots/test-basic/bar.rst @@ -0,0 +1,2 @@ +bar +=== diff --git a/tests/roots/test-basic/conf.py b/tests/roots/test-basic/conf.py new file mode 100644 index 0000000..e10f5e5 --- /dev/null +++ b/tests/roots/test-basic/conf.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +master_doc = 'index' +exclude_patterns = ['_build'] diff --git a/tests/roots/test-basic/foo.rst b/tests/roots/test-basic/foo.rst new file mode 100644 index 0000000..468a424 --- /dev/null +++ b/tests/roots/test-basic/foo.rst @@ -0,0 +1,6 @@ +foo +=== + +.. toctree:: + + bar diff --git a/tests/roots/test-basic/index.rst b/tests/roots/test-basic/index.rst new file mode 100644 index 0000000..0a4b347 --- /dev/null +++ b/tests/roots/test-basic/index.rst @@ -0,0 +1,12 @@ +test-basic +========== + +.. toctree:: + + foo + +Heading +------- + +Subheading +~~~~~~~~~~ diff --git a/tests/roots/test-empty/conf.py b/tests/roots/test-empty/conf.py new file mode 100644 index 0000000..e10f5e5 --- /dev/null +++ b/tests/roots/test-empty/conf.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +master_doc = 'index' +exclude_patterns = ['_build'] diff --git a/tests/roots/test-empty/index.rst b/tests/roots/test-empty/index.rst new file mode 100644 index 0000000..a69c08d --- /dev/null +++ b/tests/roots/test-empty/index.rst @@ -0,0 +1,10 @@ +test-empty +========== + +.. toctree:: + +Heading +------- + +Subheading +~~~~~~~~~~ diff --git a/tests/roots/test-missing-toctree/conf.py b/tests/roots/test-missing-toctree/conf.py new file mode 100644 index 0000000..e10f5e5 --- /dev/null +++ b/tests/roots/test-missing-toctree/conf.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +master_doc = 'index' +exclude_patterns = ['_build'] diff --git a/tests/roots/test-missing-toctree/index.rst b/tests/roots/test-missing-toctree/index.rst new file mode 100644 index 0000000..a085e7f --- /dev/null +++ b/tests/roots/test-missing-toctree/index.rst @@ -0,0 +1,2 @@ +test-missing-toctree +==================== |