summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py')
-rw-r--r--tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py b/tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py
new file mode 100644
index 0000000..3ad5491
--- /dev/null
+++ b/tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py
@@ -0,0 +1,17 @@
+import os
+import sys
+
+from docutils.parsers import Parser
+
+sys.path.insert(0, os.path.abspath('.'))
+
+
+class DummyTestParser(Parser):
+ supported = ('dummy',)
+
+
+extensions = ['source_parser']
+source_suffix = ['.rst', '.test']
+source_parsers = {
+ '.test': DummyTestParser
+}