You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.3 KiB
87 lines
1.3 KiB
#! /usr/bin/env python |
|
|
|
# $Id: test_paragraphs.py 4564 2006-05-21 20:44:42Z wiemann $ |
|
# Author: David Goodger <goodger@python.org> |
|
# Copyright: This module has been placed in the public domain. |
|
|
|
""" |
|
Tests for states.py. |
|
""" |
|
|
|
from __init__ import DocutilsTestSupport |
|
|
|
def suite(): |
|
s = DocutilsTestSupport.ParserTestSuite() |
|
s.generateTests(totest) |
|
return s |
|
|
|
totest = {} |
|
|
|
totest['paragraphs'] = [ |
|
["""\ |
|
A paragraph. |
|
""", |
|
"""\ |
|
<document source="test data"> |
|
<paragraph> |
|
A paragraph. |
|
"""], |
|
["""\ |
|
Paragraph 1. |
|
|
|
Paragraph 2. |
|
""", |
|
"""\ |
|
<document source="test data"> |
|
<paragraph> |
|
Paragraph 1. |
|
<paragraph> |
|
Paragraph 2. |
|
"""], |
|
["""\ |
|
Line 1. |
|
Line 2. |
|
Line 3. |
|
""", |
|
"""\ |
|
<document source="test data"> |
|
<paragraph> |
|
Line 1. |
|
Line 2. |
|
Line 3. |
|
"""], |
|
["""\ |
|
Paragraph 1, Line 1. |
|
Line 2. |
|
Line 3. |
|
|
|
Paragraph 2, Line 1. |
|
Line 2. |
|
Line 3. |
|
""", |
|
"""\ |
|
<document source="test data"> |
|
<paragraph> |
|
Paragraph 1, Line 1. |
|
Line 2. |
|
Line 3. |
|
<paragraph> |
|
Paragraph 2, Line 1. |
|
Line 2. |
|
Line 3. |
|
"""], |
|
["""\ |
|
A. Einstein was a really |
|
smart dude. |
|
""", |
|
"""\ |
|
<document source="test data"> |
|
<paragraph> |
|
A. Einstein was a really |
|
smart dude. |
|
"""], |
|
] |
|
|
|
if __name__ == '__main__': |
|
import unittest |
|
unittest.main(defaultTest='suite')
|
|
|