Commit 0fa21285 authored by Stefan H. Holek's avatar Stefan H. Holek

Added a test for presence of rst parser (roman.py).

parent 14f1aa4f
import unittest
class TestReST(unittest.TestCase):
def testRoman(self):
# Make sure we can import the rst parser
from docutils.parsers import rst
def test_suite():
from unittest import TestSuite, makeSuite
return TestSuite((makeSuite(TestReST),))
......@@ -390,7 +390,7 @@ setup(
name='reStructuredText',
author='Andreas Jung',
packages=['reStructuredText'],
packages=['reStructuredText', 'reStructuredText.tests'],
data_files=[['reStructuredText', ['reStructuredText/*.txt']],
],
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment