diff options
Diffstat (limited to 'tests/roots/test-root/parsermod.py')
-rw-r--r-- | tests/roots/test-root/parsermod.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/roots/test-root/parsermod.py b/tests/roots/test-root/parsermod.py index dfc699944..de0849c80 100644 --- a/tests/roots/test-root/parsermod.py +++ b/tests/roots/test-root/parsermod.py @@ -3,6 +3,8 @@ from docutils.parsers import Parser class Parser(Parser): + supported = ('foo',) + def parse(self, input, document): section = nodes.section(ids=['id1']) section += nodes.title('Generated section', 'Generated section') |