1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
#!/usr/bin/python
# Author: David Goodger
# Contact: goodger@users.sourceforge.net
# Revision: $Revision: 1.5 $
# Date: $Date: 2004/10/24 15:21:31 $
# Copyright: This module has been placed in the public domain.
"""
Tests for `docutils.transforms.misc.ClassAttribute`.
"""
from __init__ import DocutilsTestSupport
from docutils.parsers.rst import Parser
def suite():
parser = Parser()
s = DocutilsTestSupport.TransformTestSuite(parser)
s.generateTests(totest)
return s
totest = {}
totest['class'] = ((), [
["""\
.. class:: one
paragraph
""",
"""\
<document source="test data">
<paragraph class="one">
paragraph
"""],
["""\
.. class:: two
..
Block quote
""",
"""\
<document source="test data">
<comment xml:space="preserve">
<block_quote class="two">
<paragraph>
Block quote
"""],
["""\
Block quote
.. class:: three
Paragraph
""",
"""\
<document source="test data">
<block_quote>
<paragraph>
Block quote
<paragraph class="three">
Paragraph
"""],
["""\
.. class:: four
Section Title
=============
Paragraph
""",
"""\
<document source="test data">
<section class="four" id="section-title" name="section title">
<title>
Section Title
<paragraph>
Paragraph
"""],
["""\
.. class::
.. class:: 99
""",
"""\
<document source="test data">
<system_message level="3" line="1" source="test data" type="ERROR">
<paragraph>
Error in "class" directive:
1 argument(s) required, 0 supplied.
<literal_block xml:space="preserve">
.. class::
<system_message level="3" line="3" source="test data" type="ERROR">
<paragraph>
Invalid class attribute value for "class" directive: "99".
<literal_block xml:space="preserve">
.. class:: 99
"""],
["""\
.. class:: one
.. class:: two
multiple class values may be assigned to one element
""",
"""\
<document source="test data">
<paragraph class="one two">
multiple class values may be assigned to one element
"""],
["""\
.. class:: one two
multiple class values may be assigned to one element
""",
"""\
<document source="test data">
<paragraph class="one two">
multiple class values may be assigned to one element
"""],
["""\
.. class:: fancy
2. List starts at 2.
3. Class should apply to list, not to system message.
""",
"""\
<document source="test data">
<enumerated_list class="fancy" enumtype="arabic" prefix="" start="2" suffix=".">
<list_item>
<paragraph>
List starts at 2.
<list_item>
<paragraph>
Class should apply to list, not to system message.
<system_message level="1" line="3" source="test data" type="INFO">
<paragraph>
Enumerated list start value not ordinal-1: "2" (ordinal 2)
"""],
["""\
2. List starts at 2.
3. Class should apply to next paragraph, not to system message.
.. class:: fancy
A paragraph.
""",
"""\
<document source="test data">
<enumerated_list enumtype="arabic" prefix="" start="2" suffix=".">
<list_item>
<paragraph>
List starts at 2.
<list_item>
<paragraph>
Class should apply to next paragraph, not to system message.
<system_message level="1" line="1" source="test data" type="INFO">
<paragraph>
Enumerated list start value not ordinal-1: "2" (ordinal 2)
<paragraph class="fancy">
A paragraph.
"""],
])
if __name__ == '__main__':
import unittest
unittest.main(defaultTest='suite')
|