summaryrefslogtreecommitdiff
path: root/test/local-reader.py
blob: 2259135fa5124fea162e4e5d2406c8eb5219e9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
# $Id$
# Authors: Engelbert Gruber <grubert@users.sourceforge.net>
#          Toshio Kuratomi <toshio@fedoraproject.org>
# Copyright: This module is put into the public domain.

"""
mini-reader to test get_reader_class with local reader
"""

import docutils
from docutils import readers

class Reader(readers.Reader):

    supported = ('dummy',)
    """Formats this reader supports."""

    document = None
    """A document tree."""