build.test.test_parsers.test_rst.test_transitions.py Maven / Gradle / Ivy
#! /usr/bin/env python
# $Id: test_transitions.py 4564 2006-05-21 20:44:42Z wiemann $
# Author: David Goodger
# Copyright: This module has been placed in the public domain.
"""
Tests for transition markers.
"""
from __init__ import DocutilsTestSupport
def suite():
s = DocutilsTestSupport.ParserTestSuite()
s.generateTests(totest)
return s
totest = {}
# See DocutilsTestSupport.ParserTestSuite.generateTests for a
# description of the 'totest' data structure.
totest['transitions'] = [
["""\
Test transition markers.
--------
Paragraph
""",
"""\
Test transition markers.
Paragraph
"""],
["""\
Section 1
=========
First text division of section 1.
--------
Second text division of section 1.
Section 2
---------
Paragraph 2 in section 2.
""",
"""\
Section 1
First text division of section 1.
Second text division of section 1.
Section 2
Paragraph 2 in section 2.
"""],
["""\
--------
A section or document may not begin with a transition.
The DTD specifies that two transitions may not
be adjacent:
--------
--------
--------
The DTD also specifies that a section or document
may not end with a transition.
--------
""",
"""\
A section or document may not begin with a transition.
The DTD specifies that two transitions may not
be adjacent:
The DTD also specifies that a section or document
may not end with a transition.
"""],
["""\
Test unexpected transition markers.
Block quote.
--------
Paragraph.
""",
"""\
Test unexpected transition markers.
Block quote.
Unexpected section title or transition.
--------
Paragraph.
"""],
["""\
Short transition marker.
---
Paragraph
""",
"""\
Short transition marker.
---
Paragraph
"""],
["""\
Sections with transitions at beginning and end.
Section 1
=========
----------
The next transition is legal:
----------
Section 2
=========
----------
""",
"""\
Sections with transitions at beginning and end.
Section 1
The next transition is legal:
Section 2
"""],
["""\
A paragraph, two transitions, and a blank line.
----------
----------
""",
"""\
A paragraph, two transitions, and a blank line.
"""],
["""\
A paragraph and two transitions.
----------
----------
""", # the same:
"""\
A paragraph and two transitions.
"""],
["""\
----------
Document beginning with a transition.
""",
"""\
Document beginning with a transition.
"""],
["""\
Section 1
=========
Subsection 1
------------
Some text.
----------
Section 2
=========
Some text.
""",
"""\
Section 1
Subsection 1
Some text.
Section 2
Some text.
"""],
["""\
Section 1
=========
----------
----------
----------
Section 2
=========
Some text.
""",
"""\
Section 1
Section 2
Some text.
"""],
["""\
----------
----------
----------
""",
"""\
"""],
["""\
A paragraph.
----------
""",
"""\
A paragraph.
"""],
]
if __name__ == '__main__':
import unittest
unittest.main(defaultTest='suite')